Date of Completion
{{ $handover->date_of_completion ? date('l, d F Y', strtotime($handover->date_of_completion)) : '-' }}
@php
$handoverConfiguration = \App\Models\HandoverConfiguration::where('property_type_id', $handover->project->propertyType->id)
->where('company_id', $handover->project->company->id)
->first();
@endphp
@if ($handoverConfiguration)
{!! $handoverConfiguration->content !!}
@else
Handover Content Not Found
@endif