@if($service = $booking->service)
@endif
{{$booking->object_model}}
|
@if($service = $booking->service)
@php
$translation = $service->translate();
@endphp
{{$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")}}
@endif
{{__("Invoice")}}
@if($booking->status == 'unpaid')
{{__("Pay now")}}
@endif
|