@extends('admin.layout') @section('page_title', 'Posts') @section('admin_content')

All posts

@can('create', \App\Models\Post::class) New post @endcan
@forelse($posts as $post) @empty @endforelse
Title Author Status Actions
{{ $post->title }} {{ $post->author->name ?? '—' }} @if($post->is_published) Published @else Draft @endif @can('update', $post) @endcan @can('delete', $post)
@csrf @method('DELETE')
@endcan
No posts yet.
@if($posts->hasPages()) @endif
@endsection