| 
        @if($service = $booking->service)
            
        @endif
        {{$booking->object_model}}
     | 
    
        @if($service = $booking->service)
            
                {{$service->title}}
            
        @else
            {{__("[Deleted]")}}
        @endif
     | 
    {{display_date($booking->created_at)}} | 
    
        {{__("Start date")}} : {{display_date($booking->start_date)}}  
        {{__("End date")}} : {{display_date($booking->end_date)}}  
        {{__("Duration")}} :
        @if($booking->duration_days <= 1)
            {{__(':count day',['count'=>$booking->duration_days])}}
        @else
            {{__(':count days',['count'=>$booking->duration_days])}}
        @endif
     | 
    {{     | {{format_money_main($booking->total)}} | 
    ($booking->total)}}
    {{$booking->statusName}} | 
    
        @if($service = $booking->service)
            
                {{__("Details")}}
            
            @include ($service->checkout_booking_detail_modal_file ?? '')
        @endif
        @if(!empty(setting_item("car_allow_vendor_can_change_their_booking_status")))
            
                
                {{__("Action")}}
            
            
        @endif
     |