@extends ('main') @section('title' , '| Wszystkie Posty') @section('content')

Wszystkie posty

Utwórz Nowy Post


@foreach ($posts as $post) @endforeach
# Tytuł Treść Kategoria Utworzono
{{ $post -> id }} {{ substr(strip_tags($post->title) , 0 , 20) }}{{ strlen(strip_tags($post->title)) > 20 ? "..." : "" }} {{ substr(strip_tags($post->body) , 0 , 50) }}{{ strlen(strip_tags($post->body)) > 50 ? "..." : "" }} {{ $post->category->name }} {{ date('n.d.Y H:i' , strtotime($post -> created_at)) }} PodglądEdytuj
{!! $posts->links(); !!}
@endsection