Committee Details
{{ $committee->title }}
Publish Date: {{ \Carbon\Carbon::parse($committee->publish_date)->format('d M, Y') }}
Session: {{ $committee->session }}
Status: @if ($committee->is_active) Active @else Inactive @endif
Description:
{!! $committee->description !!}
Committee Members
@forelse ($committee->committee_details as $detail)
@empty
@endforelse
@if ($detail->member && $detail->member->photo)
@else
@endif
{{ $detail->member->full_name ?? '-' }}
{{ $detail->designation->name ?? 'N/A' }}
No members found for this committee.