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

Past Committees

{{ $committee->title }}

{{ \Carbon\Carbon::parse($committee->publish_date)->format('d M, Y') }} | Session: {{ $committee->session }} @if ($committee->is_active) Running @else Previous @endif
@if ($committee->description)

{!! $committee->description !!}

@endif
@forelse($committee->committee_details as $detail)
@if ($detail->member && $detail->member->photo) {{ $detail->member->full_name }} @else User @endif
{{ $detail->designation ? $detail->designation->name : '' }}
@empty
No members found for this committee.
@endforelse
@endsection