@extends('layouts.admin') @section('title', 'Blog Posts') @section('content')
Manage your blog content
| Title | Category | Status | Views | Date | Actions |
|---|---|---|---|---|---|
|
@if($post->featured_image)
{{ Str::limit($post->title, 50) }} {{ $post->author->name }} |
@if($post->category) {{ $post->category->name }} @else - @endif | @if($post->is_published) Published @else Draft @endif | {{ number_format($post->views) }} | {{ $post->created_at->format('M d, Y') }} | |
| No posts found. Create your first post | |||||