Form Details - {{ $form->form_number }}

{{ ucfirst($form->status) }}
Form Information

Form Number: {{ $form->form_number }}

Type: {{ strtoupper($form->type) }}

Created: {{ $form->created_at->format('M j, Y g:i A') }}

Updated: {{ $form->updated_at->format('M j, Y g:i A') }}

Related Information
@if($form->client)

Client: {{ $form->client->name }}

Email: {{ $form->client->email }}

@else

Client: Not specified

@endif @if($form->shipment)

Shipment: {{ $form->shipment->tracking_number ?? 'N/A' }}

@else

Shipment: Not specified

@endif
Form Data
@if($form->form_data && is_array($form->form_data))
@foreach($form->form_data as $key => $value)
{{ ucwords(str_replace('_', ' ', $key)) }}: @if(is_array($value)) {{ json_encode($value) }} @else {{ $value }} @endif
@endforeach
@else

No form data available

@endif
← Back to Forms
@if($form->type == 'psw') 📥 Download PDF @elseif($form->type == 'fbr') 📥 Download PDF @elseif($form->type == 'tdap') 📥 Download PDF @elseif($form->type == 'sbp') 📥 Download PDF @endif