@extends('back-end.master.app') @section('title', 'Poets Management') @section('body') Poets Add New {{-- Filter Form --}} All Centuries @foreach($centries as $cent) id ? 'selected' : '' }}> {{ $cent->title_ps }} @endforeach Filter Reset {{-- Poets Table --}} # Image Name Century Address Poetries Actions @forelse($poets as $row) {{ $loop->iteration }} @if($row->image && $row->image != 'image/noimage.jpg') @else No image @endif {{ $row->name }} {{ $row->centry->title_ps ?? '-' }} {{ $row->address }} {{ $row->poetries_count ?? $row->poetries()->count() }} @csrf @method('DELETE') @empty No poets found. @endforelse {{ $poets->links('pagination::bootstrap-4') }} @endsection @section('pageJs') @endsection