@extends('backend.layouts.app') @push('style') @endpush @section('content')

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)
@if ($detail->member && $detail->member->photo) {{ $detail->member->full_name }} @else
@endif
{{ $detail->member->full_name ?? '-' }}

{{ $detail->designation->name ?? 'N/A' }}

@empty

No members found for this committee.

@endforelse
@endsection