@extends('admin.layout.main') @section('admin')
Manage your blog posts and articles
| Post | Category | Status | Views | Actions |
|---|---|---|---|---|
|
@if($post->featured_image)
{{ Str::limit($post->title, 60) }}
{{ $post->read_time }} min
•
{{ $post->created_at->format('M d') }}
|
@if($post->category) {{ $post->category->name }} @else No category @endif |
@if($post->is_featured)
Featured
@endif
{{ $post->is_published ? 'Published' : 'Draft' }}
|
{{ number_format($post->views) }}
|
|