@extends('admin.layout') @section('content')
Blog posts
Add
@foreach ($posts as $post) @endforeach
Title Published Date Actions
{{ $post->title }} {{ $post->is_published ? 'Yes' : 'No' }} {{ $post->published_at?->format('d M Y') }}
Edit
@csrf @method('DELETE')
{{ $posts->links() }}
@endsection