@extends("layouts.app") @section("title", "Posts") @section("content") Add New Post @forelse ($posts as $post) @empty @endforelse
លេខរៀង Title Category Author Image Content Status សកម្មភាព
{{ $loop->iteration }} {{ $post->title }} {{ $post->category->name ?? 'No Category' }} {{ $post->user->name ?? 'Guest' }} {{ $post->title }} {{ $post->content ?? 'No Content' }} {{ ucfirst($post->status) }} Detail @auth @if(auth()->user()->role === 'admin' || auth()->id() === $post->user_id) Edit
@csrf @method('DELETE')
@endif @endauth
មិនមានទិន្នន័យ
{{ $posts->links() }}
@endsection