@if(session('success'))
{{ session('success') }}
@endif
| No |
Judul |
Penulis |
Status |
Tanggal |
Aksi |
@forelse($posts as $post)
| {{ $loop->iteration }} |
{{ $post->title }}
{{ Str::limit(strip_tags($post->content), 50) }}
|
{{ $post->author->name ?? 'Admin' }} |
@if($post->status == 'published')
Terbit
@elseif($post->status == 'pending')
Pending
@else
Draft
@endif
|
{{ $post->created_at->format('d M Y') }} |
|
@empty
| Belum ada data {{ $type }}. |
@endforelse
{{ $posts->appends(['type' => $type])->links() }}