@extends('back-end.master.app') @section('title', 'Posts Management') @section('body')
{{-- Filter Form --}}
{{-- Posts Table --}}
@forelse($posts as $row) @empty @endforelse
# Image Title Category Language Date Status Actions
{{ $loop->iteration }} @if($row->image && $row->image != 'image/noimage.jpg') thumb @else No image @endif {{ Str::limit($row->title, 30) }} {{ $row->category->title_en ?? '-' }} {{ $row->language->title_en ?? '-' }} {{ $row->date }} @if($row->status == 1) Published @else Draft @endif
@csrf @method('DELETE')
No posts found.
{{ $posts->links('pagination::bootstrap-4') }}
@endsection @section('pageJs') @endsection