@php $timeout = $booking->timeout_at ? \Carbon\Carbon::parse($booking->timeout_at) : null; $isExpired = $timeout ? $timeout->isPast() : false; // Default country code if missing $hostPhone = $booking->detail && $booking->detail->createdBy ? ($booking->detail->createdBy->country_code . $booking->detail->createdBy->contact_no) : ''; $custPhone = $booking->customer ? ($booking->customer->country_code . $booking->customer->contact_no) : ''; @endphp