{{ __('My Posts') }}

{{ __('New Post') }}
@if (session('status') === 'post-created')
{{ __('Post created successfully.') }}
@endif @if (session('status') === 'post-deleted')
{{ __('Post deleted successfully.') }}
@endif
@forelse ($posts as $post) @empty @endforelse
{{ __('Title') }} {{ __('Slug') }} {{ __('Status') }} {{ __('Created') }} {{ __('Actions') }}
{{ $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') }}
{{ __('Edit') }}
@csrf @method('DELETE')
{{ __('No posts yet.') }} {{ __('Create your first post.') }}
{{ $posts->links() }}