@extends('layouts.admin') @section('title', 'Posts') @section('header', 'Posts') @section('content')
Add Post
@csrf
@foreach($posts as $post) @endforeach @if($posts->isEmpty()) @endif
Title Type Category Status Views Date Actions
{{ $post->title }}
{{ $post->type }} {{ $post->category }} {{ $post->is_published ? 'Published' : 'Draft' }} {{ $post->views }} {{ $post->created_at->format('M d, Y') }}
Edit @if($post->is_published) @csrf @else
@csrf
@endif
@csrf @method('DELETE')
No posts found
{{ $posts->links() }}
@endsection