@extends('back_end.app'); @section('content')
@if(session('status')) @endif

All Post

@if($post->count() < 1 )
No Post Were Found !
@else @foreach ($post as $key => $item) @endforeach
Sl Title Category Created by Image Image Caption Action
{{ ++$key }} {{ $item->title }} {{ $item->categories->name ?? 'Uncategory' }} {{ $item->user->user_name }} Not Found ! {{ $item->image_caption }}
{{--
@csrf
--}}
Total Count : {{ $post->count() }}
@endif
@endsection