{{ __('cargo::view.shipment_code') }}:
{{ __('cargo::view.shipment_code') }}: {{\Carbon\Carbon::parse($shipment->shipping_date)->format('d-m-Y')}}
@if($shipment->collection_time != null)
{{ __('cargo::view.collection_time') }}: {{$shipment->collection_time}} /
@endif
@foreach(Modules\Cargo\Entities\PackageShipment::where('shipment_id',$shipment->id)->get() as $package)
@if($shipment->barcode != null)
@endif
{{$package->description}}
{{ __('cargo::view.qty') }}: {{$package->qty}}
@if(isset($package->package->name))
{{ __('cargo::view.package_type') }}: {{json_decode($package->package->name, true)[app()->getLocale()]}}
@endif
{{ __('cargo::view.weigh_length_width_height') }}: {{$package->weight." ".__('cargo::view.KG')." x ".$package->length." ".__('cargo::view.CM')." x ".$package->width." ".__('cargo::view.CM')." x ".$package->height." ".__('cargo::view.CM')}}
@endforeach