@extends ('main') @section('title' , '| Wszystkie Posty') @section('content')
# | Tytuł | Treść | Kategoria | Utworzono | @foreach ($posts as $post) |
---|---|---|---|---|---|
{{ $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 |