@extends('shipper.layouts.app') @section('extra-css') @endsection @section('content')

{{__('admin.shipments')}}

تفاصيل الطلب :
{{__('admin.type')}} {{$shipment->type}}
{{__('admin.weight')}} {{$shipment->weight}}
{{__('admin.insurance_type')}} {{$shipment->insurance_type?->type}}
{{__('admin.status')}} @if($shipment->status==0) {{__('admin.pending')}} @elseif($shipment->status==1) {{__('admin.packing')}} @elseif($shipment->status==2) {{__('admin.packed')}} @elseif($shipment->status==3) {{__('admin.delivering')}} @else {{__('admin.delivered')}} @endif
{{__('admin.description')}} {{$shipment->description}}
{{__('admin.driver')}} {{$shipment->drivers()->where('shipment_drivers.status',1)->first()?->name}}
{{__('admin.sender')}} {{$shipment->sender->name}}
{{__('admin.user_price')}} {{$shipment->user_price}}
{{__('admin.driver_price')}} {{$shipment->driver_price}}
{{__('admin.final_price')}} {{$shipment->final_price}}
{{__('admin.packing_date')}} {{$shipment->packing_date}}
{{__('admin.packing_time')}} {{$shipment->packing_time}}
{{__('admin.from_address')}} {{__('admin.location')}}
{{__('admin.from_address_detail')}} {{$shipment->from_address_details?->address_name}}
{{__('admin.to_address')}} {{__('admin.location')}}
{{__('admin.to_address_detail')}} {{$shipment->to_address_details?->address_name}}
{{__('admin.receiver')}} {{$shipment->receiver?->name}}
{{__('admin.truck')}} {{$shipment->truck?$shipment->truck->type?->type_ar:'-'}}
{{__('admin.number_of_trucks')}} {{$shipment->number_of_trucks}}
{{__('admin.shipment_invoice_picture')}}
{{__('admin.packing_list_picture')}}
{{__('admin.truck')}} {{__('admin.driver')}} {{__('admin.status')}}
@endsection @section('extra-js') @endsection