|
{{ Str::limit($post->title, 40) }}
|
{{ request()->user()->name }} |
@if ($post->categories)
@foreach ($post->categories as $category)
{{ $category->name }}
@endforeach
@endif
|
{{ $post->created_at->format(config('streamline.blog.admin.posts.date_format')) }} |
@if ($post->published)
{{ __('Published') }}
|
@else
{{ __('Draft') }}
|
@endif
|
@endforeach