@extends('admin.layout.app') @section('title', __('front.volunteer_lecturer_details')) @section('body')

{{ __('front.volunteer_lecturer_details') }}

Application ID: #{{ $volunteer->id }}

{{ __('front.lecturer_information') }}

{{ $volunteer->name ?? '—' }}

{{ $volunteer->email ?? '—' }}

{{ $volunteer->phone ?? '—' }}

{{ $volunteer->subject ?? ($volunteer->speciality ?? '—') }}

@if(isset($volunteer->address) && $volunteer->address)

{{ $volunteer->address }}

@endif @if(isset($volunteer->message) && $volunteer->message)

{{ $volunteer->message }}

@endif

{{ $volunteer->created_at?->format('F d, Y') }}
{{ $volunteer->created_at?->format('h:i A') }}

{{-- Attachments --}} @include('online-form._attachments', ['model' => $volunteer])
{{ __('front.actions') }}
@csrf @method('DELETE')
{{ __('front.application_summary') }}
{{ __('front.application_id') }} #{{ $volunteer->id }}
{{ __('front.subject') }} {{ $volunteer->subject ?? ($volunteer->speciality ?? '—') }}
{{ __('front.status') }} {{ __('front.pending') }}
{{ __('front.date') }} {{ $volunteer->created_at?->format('M d, Y') }}
@csrf @method('PATCH')
@csrf @method('PATCH')
@endsection