@extends('layouts.admin.admin') @section('page-specific-styles') @endsection @section('title', 'Ceremony Detail') @section('content')
Ceremony Detail
@include('graduation.partials.links', ['graduation' => $ceremony->graduation])

Status
{!! statusHtml($ceremony->status) !!}

Institution
{{ $ceremony->institution->name ?? '' }}

Graduation
{{ $ceremony->graduation->title ?? '' }}

Venue
{{ $ceremony->venue }}

Address
{{ $ceremony->address }}

Date
{{ $ceremony->date_formatted }}

Time
{{ $ceremony->time }}

Address
{{ $ceremony->address }}

Order Start Date
{{ $ceremony->order_start_date_time_formatted }}

Order End Date
{{ $ceremony->order_end_date_time_formatted }}

Number of Graduates
{{ $ceremony->graduates()->count() }} @if (!isArchived($ceremony->archive))

@endif

Additional Guest Ticket Closing Date
{!! $ceremony->ticket_closing_date ? toDMY2($ceremony->ticket_closing_date) : '--' !!}

Pre-Order Closing Date
{!! $ceremony->pre_order_closing_date ? toDMY2($ceremony->pre_order_closing_date) : '--' !!}

Presentation Photo Link
{{ $ceremony->presentation_photo_link ?? '--' }}

Ticket Limit
{{ $ceremony->ticket_limit ?? '0' }}

Seat Arrangement
{!! $ceremony->can_rearrange_seat !!}

Column No.
{{ $ceremony->column_number }}

Start From
{{ $ceremony->start_from }}

Enable Certificate Legal Name
{!! yesNo($ceremony->enable_certificate_legal_name) !!}

Certificate Legal Name Closing Date
{!! dateFormat($ceremony->certificate_legal_name_closing_date, config('custom.dmyhia2')) !!}

Certificate Legal Name Note
{!! $ceremony->certificate_legal_name_note !!}

Enable On Stage Name
{!! yesNo($ceremony->enable_on_stage_name) !!}

Enable ARRIVAL For Collection Portal
{!! yesNo($ceremony->arrival) !!}

Enable Pre-Order Collection Option
{!! yesNo($ceremony->enable_pre_order_collection_option) !!}

Enable Underage Guests Option
{!! yesNo($ceremony->enable_underage_guests_option) !!}

Underage Guests Label Text
{{ $ceremony->underage_guests_label ?? '--' }}

Underage Guests Yes Content
{!! $ceremony->underage_guests_yes_content ?? '--' !!}

Enable Dietary Preference Option
{!! yesNo($ceremony->enable_dietary_preference_option) !!}

Dietary Preference Label Text
{{ $ceremony->dietary_preference_label ?? '--' }}

Dietary Preference Options
@foreach(stringToArray($ceremony->dietary_preference_options, '|') as $option) {{ $option }} @endforeach

Enable Mobility / Accessibility Option
{!! yesNo($ceremony->enable_mobility_accessibility_option) !!}

Mobility / Accessibility Label Text
{{ $ceremony->mobility_accessibility_label ?? '--' }}

Mobility / Accessibility Options
@foreach(stringToArray($ceremony->mobility_accessibility_options, '|') as $option) {{ $option }} @endforeach

Enable Indigenous Regalia Option
{!! yesNo($ceremony->enable_indigenous_regalia_option) !!}

Indigenous Regalia Label Text
{{ $ceremony->indigenous_regalia_label ?? '--' }}

Indigenous Regalia Yes Content
{!! $ceremony->indigenous_regalia_yes_content ?? '--' !!}

Enable Guest Dietary Preference Option
{!! yesNo($ceremony->enable_guest_dietary_preference_option) !!}

GuestDietary Preference Label Text
{{ $ceremony->guest_dietary_preference_label ?? '--' }}

{{--

Dietary Preference Options
@foreach(stringToArray($ceremony->dietary_preference_options, '|') as $option) {{ $option }} @endforeach

--}}
@livewire('admin.ceremony.seat-component', ['ceremony' => $ceremony])
@endsection