@extends('main') @section('title') @section('content')
Posty
@foreach ($posts as $post)
{{ $post->user->name }}
{{ date('M j, Y' , strtotime($post->created_at)) }}
{{ substr(strip_tags($post->body), 0, 250) }}{{ strlen(strip_tags($post->body)) > 250 ? '...' : "" }}
Czytaj więcej
@endforeach
{!! $posts->links() !!}
@stop