@extends('back-end.master.app') @section('title', 'Poets Management') @section('body')

Poets

Add New
{{-- Filter Form --}}
Reset
{{-- Poets Table --}}
@forelse($poets as $row) @empty @endforelse
# Image Name Century Address Poetries Actions
{{ $loop->iteration }} @if($row->image && $row->image != 'image/noimage.jpg') {{ $row->name }} @else No image @endif {{ $row->name }} {{ $row->centry->title_ps ?? '-' }} {{ $row->address }} {{ $row->poetries_count ?? $row->poetries()->count() }}
@csrf @method('DELETE')
No poets found.
{{ $poets->links('pagination::bootstrap-4') }}
@endsection @section('pageJs') @endsection