@extends('admin.layout')
@section('page_title', 'Posts')
@section('admin_content')
| Title |
Author |
Status |
Actions |
@forelse($posts as $post)
| {{ $post->title }} |
{{ $post->author->name ?? '—' }} |
@if($post->is_published)
Published
@else
Draft
@endif
|
@can('update', $post)
@endcan
@can('delete', $post)
@endcan
|
@empty
| No posts yet. |
@endforelse
@if($posts->hasPages())
@endif
@endsection