Candid Chronicles
@csrf
Logout
Admin Dashboard
+ Create New Post
@if(session('success'))
{{ session('success') }}
@endif
Title
Category
Created At
Actions
@forelse($posts as $post)
{{ $post->title }}
{{ ucfirst($post->category) }}
{{ $post->created_at->format('Y-m-d H:i') }}
Edit
@csrf @method('DELETE')
Delete
@empty
No posts found.
Create one
.
@endforelse