@extends('layouts.admin') @section('title', 'Blog Posts - Admin Panel') @section('page-title', 'Blog Posts') @section('content')
| Title | Author | Status | Created At | Actions |
|---|---|---|---|---|
|
{{ $post->title }}
{{ Str::limit($post->body, 80) }}
|
{{ $post->author->name }} |
@if($post->published_at)
Published
{{ $post->published_at->format('M d, Y') }} @else Draft @endif |
{{ $post->created_at->format('M d, Y') }} |