@extends('layouts.admin') @section('title', 'Blog Posts') @section('page-title', 'Manage Blog Posts') @section('content')
| 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 |
|
No blog posts found |
|||