@extends('back-end.master.app') @section('title', $poet->name . ' - Details') @section('body')

{{ $poet->name }} - Details

Back to List
{{-- Poet Profile --}}
{{ $poet->name }}
{{ $poet->name }}

{{ $poet->centry->title_ps ?? '' }}

Biography

{{ $poet->bio }}


Father Name: {{ $poet->father_name ?? '-' }}
Date of Birth: {{ $poet->dob ?? '-' }}
Phone: {{ $poet->phone ?? '-' }}
Email: {{ $poet->email ?? '-' }}
Address: {{ $poet->address }}
{{-- Categories and Poetries --}}
Categories
All Categories @foreach($categories as $cat) {{ $cat->title_ps }} @endforeach
Poetries - {{ $cat_title }}
@if($cat_title != 'All' && isset($category)) Add Poetry @else Add Poetry @endif
@forelse($poetries as $row) @empty @endforelse
# Title Category Actions
{{ $loop->iteration }} {{ $row->title }} {{ $row->category->title_en ?? '-' }}
No poetries found.
{{ $poetries->links('pagination::bootstrap-4') }}
@endsection @section('pageJs') @endsection