@extends('admin.layout') @section('title', 'Posts') @section('content')
| Title | Category | Author | Status | Views | Created | Actions |
|---|---|---|---|---|---|---|
| {{ $post->title }} | @if($post->category) {{ $post->category->name }} @else - @endif | {{ $post->user->name }} | {{ ucfirst($post->status) }} | {{ $post->views_count }} | {{ $post->created_at->format('M d, Y') }} | |
| No posts found | ||||||