@extends('layouts.admin') @section('title', 'Blog Posts') @section('page-title', 'Manage Blog Posts') @section('content')
Add New Post
@forelse($blogPosts as $post) @empty @endforelse
Title Status Published Actions
{{ $post->title_en }}
{{ Str::limit($post->excerpt_en ?? '', 60) }}
@if($post->is_published) Published @else Draft @endif {{ $post->published_at ? $post->published_at->format('M d, Y') : '-' }} Edit
@csrf @method('DELETE')

No blog posts found

@if($blogPosts->hasPages())
{{ $blogPosts->links() }}
@endif
@endsection