@extends('admin.base') @section('content')

Posts

Create Post @foreach($posts as $post) @endforeach
Id Title Published Date
{{$post->id}} {{ Str::limit($post->title, 30, "...") }} {{$post->is_published ? "Yes" : "No"}} {{$post->created_at->format('Y-m-d')}} Edit
$post->id]) }} method="post"> @csrf
@endsection