@if($service = $booking->service)
@endif
{{$booking->object_model}}
|
@if($service = $booking->service)
@php
$translation = $service->translateOrOrigin(app()->getLocale());
@endphp
{!! clean($translation->title) !!}
@else
{{__("[Deleted]")}}
@endif
|
{{display_date($booking->created_at)}} |
{{__("Check in")}} : {{display_date($booking->start_date)}}
{{__("Duration")}} : {{ $booking->getMeta("duration") ?? "1" }} {{__("hours")}}
|
{{format_money($booking->total)}} |
{{format_money($booking->paid)}} |
{{format_money($booking->total - $booking->paid)}} |
{{$booking->statusName}} |
@if($service = $booking->service)
{{__("Details")}}
@include ($service->checkout_booking_detail_modal_file ?? '')
@endif
{{__("Invoice")}}
|