@extends('layouts.admin') @section('content')

Post List

Post List

Create Post
@if($posts->count()) @foreach ($posts as $post) @endforeach @else @endif
# Image Title Category Tags Author Created Date Action
{{ $post->id }}
{{ $post->title }} {{ $post->category->name }} @foreach($post->tags as $tag) {{ $tag->name }} @endforeach {{ $post->user->name }} {{ $post->created_at->format('d M, Y') }}
@method('DELETE') @csrf
No posts found.
@endsection