@extends('adminlte::page') @section('title', 'Manajemen ' . ucfirst($type)) @section('content_header')

Manajemen {{ ucfirst($type) }}

Tambah {{ ucfirst($type) }}
@stop @section('content')
@if(session('success')) @endif @forelse($posts as $post) @empty @endforelse
No Judul Penulis Status Tanggal Aksi
{{ $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') }}
@csrf @method('DELETE')
Belum ada data {{ $type }}.
{{ $posts->appends(['type' => $type])->links() }}
@stop @section('js') @stop