@extends('admin.layout') @section('title', 'Posts') @section('content')

Posts

✏️ New Post
@if($search || $selectedStatus || $selectedCategory) Clear @endif
@forelse($posts as $post) @empty @endforelse
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') }}
Edit
@csrf @method('DELETE')
No posts found
{{ $posts->links() }}
@endsection