@if (session('status') === 'post-created')
{{ __('Post created successfully.') }}
@endif
@if (session('status') === 'post-deleted')
{{ __('Post deleted successfully.') }}
@endif
| {{ __('Title') }} |
{{ __('Slug') }} |
{{ __('Status') }} |
{{ __('Created') }} |
{{ __('Actions') }} |
@forelse ($posts as $post)
| {{ $post->title }} |
{{ $post->slug }} |
$post->status->value === 'published',
'bg-yellow-100 text-yellow-800' => $post->status->value === 'draft',
])>
{{ $post->status->label() }}
|
{{ $post->created_at?->format('Y-m-d H:i') }} |
|
@empty
|
{{ __('No posts yet.') }}
{{ __('Create your first post.') }}
|
@endforelse
{{ $posts->links() }}