@extends('back-end.master.app') @section('title', $poet->name . ' - Details') @section('body') {{ $poet->name }} - Details Back to List {{-- Poet Profile --}} {{ $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 # Title Category Actions @forelse($poetries as $row) {{ $loop->iteration }} {{ $row->title }} {{ $row->category->title_en ?? '-' }} @csrf @method('DELETE') @empty No poetries found. @endforelse {{ $poetries->links('pagination::bootstrap-4') }} @endsection @section('pageJs') @endsection
{{ $poet->centry->title_ps ?? '' }}
{{ $poet->bio }}