{{ __('Posts') }}

@csrf {{-- @method('DELETE') --}}
Add New Trashed Posts
@if (count($Posts) > 0) @foreach ($Posts as $post ) @endforeach @else @endif
id title excerpt content status category_id Action
{{ $post->id }} {{ $post->title }} {{ $post->excerpt }} {!! htmlspecialchars_decode($post->content) !!} {{ $post->status }} {{ $post->category ? $post->category->name : 'No Category'; }}
No record Found!
@foreach ($Posts as $post) @endforeach