@extends('frontend.layouts.app') @push('style') @endpush @section('content') {{-- Profile section --}}
logo

{{ $organizer->organization_name }}

Reg: {{ $organizer->registration_number ?? 'N/A' }}
Estd: {{ $organizer->est_date ?? 'N/A' }}
{{ $organizer->website ?? 'No website' }}
About

{{ $organizer->address }}

{{-- Type: --}} {{ ucfirst($organizer->organization_type ?? 'N/A') }}
{{ $organizer->mobile ?? 'N/A' }}
{{ $organizer->email ?? 'N/A' }}
{{ ucfirst($organizer->status ?? 'pending') }}

Representative

{{ $organizer->full_name ?? 'N/A' }}

{{-- Committee Section --}}

Committees

@forelse($organizer->committees as $committee)
{{ $committee->title }}

{{ $committee->publish_date }}  |  Session: {{ $committee->session }}

{!! $committee->description !!}

{{-- committee members inline --}}
@foreach ($committee->committee_details as $member)
member
{{ $member->member_name }}
{{ $member->designation?$member->designation->namee:'' }}
@endforeach
@empty
No committees found for this organization.
@endforelse
@endsection