@extends('layouts.default') @section('page_css') @include('includes.portal-css') @stop @section('content')

Shipment Detail

Home / Shipment History / Shipment Detail

We freight to all over the world The best logistic company, FAST and SAFELY!

Go Back

Shipment Detail

@if(isset($shipmentData->ShippingAddress) && !empty($shipmentData->ShippingAddress))

Ship from

@shipmentaddress(['html' => 'yes' , 'type' => 'from', 'shippmentData' => $shipmentData->ShippingAddress]) @endshipmentaddress

Return to

@shipmentaddress(['html' => 'yes' , 'type' => 'from', 'shippmentData' => $shipmentData->ShippingAddress]) @endshipmentaddress

Ship to

@shipmentaddress(['html' => 'yes' , 'type' => 'to', 'shippmentData' => $shipmentData->ShippingAddress]) @endshipmentaddress
@endif

Shipment information

@if (isset($shipmentData->ShippingPackages)) @foreach($shipmentData->ShippingPackages as $package) @endforeach @endif
    @if (isset($shipmentData->shipment_status))
  • Shipment Status: {{Config::get('status.status.shipment_status.'.$shipmentData->shipment_status)}}
  • @endif @if(isset($shipmentData->shipment_identification_no) && !empty($shipmentData->shipment_identification_no))
  • Shipment Identification Number: {{$shipmentData->shipment_identification_no}}
  • @endif
  • Actual Weight: {{$actualWeight}}
  • @if(isset($shipmentData->ShippmentServiceResponce) && !empty($shipmentData->ShippmentServiceResponce))
  • Total Billable Weight: {{ ($shipmentData->ShippmentServiceResponce != null) ? $shipmentData->ShippmentServiceResponce->billing_weight.' '.$shipmentData->ShippmentServiceResponce->billing_weight_unit_measurement_code : ''}}
  • Total Billable Amount: {{ ($shipmentData->ShippmentServiceResponce != null) ? $shipmentData->ShippmentServiceResponce->total_charge.' '.$shipmentData->ShippmentServiceResponce->currency_code : ''}}
  • @endif @if (isset($shipmentData->pickupˍtype))
  • {{Config::get('status.pickup_type.'.$shipmentData->pickupˍtype)}}
  • @endif
  • @if(isset($shipmentData->pickupˍtype) && $shipmentData->pickupˍtype == 1) Drop Date: @else Pick Up Date: @endif {{ isset($shipmentData->pickup_estimate_date) ? $shipmentData->pickup_estimate_date : ''}}
  • @if(isset($shipmentData->pickupˍtype) && $shipmentData->pickupˍtype == 1) Drop Time: @else Pick Up Time: @endif {{ isset($shipmentData->pickup_estimate_time) ? $shipmentData->pickup_estimate_time : ''}}
  • @if(isset($shipmentData->short_detail) && !empty($shipmentData->short_detail))
  • Detail: {{$shipmentData->short_detail}}
  • @endif

Package information

@if (isset($shipmentData->ShippingPackages)) @foreach($shipmentData->ShippingPackages as $package)
{{$package->packageType->name}}
  • Weight: {{ $package->weight}} {{ $package->WeightUnit->value}}
  • @if($package->height != null)
  • Dimensions: {{ $package->height}} x {{ $package->width}} x {{ $package->length}} {{ $package->MeasurmentUnit->value}}
  • @endif @if($package->tracking_code != null)
  • Tracking Code: {{$package->tracking_code}}
  • @endif @customstatus(['id' => $package->id, 'customStatusText' => $package->custom_status, 'customRemark' => $package->custom_remark, 'htmlElement' => 'li', 'label' => 'Status']) @endcustomstatus @if($package->custom_status == 0) @if($package->status != 0)
  • Status: {{config::get('status.status.package_status.'.$package->status)}}
  • @endif @endif @if($package->lableImage && $package->lableImage != null)
  • @php $images = json_decode($package->lableImage); @endphp label
  • @endif
@endforeach @endif
@if(isset($shipmentData->ShippingPayment) && !empty($shipmentData->ShippingPayment))

Payment information

  • Payment Method: {{Config::get('status.status.payment_method.'.$shipmentData->ShippingPayment->payment_type)}}
  • @if($shipmentData->ShippingPayment->payment_type == 2)
  • RFG Details:
    • Account Number: {{ $shipmentData->ShippingPayment->account_number }}
    • Account Name: {{ $shipmentData->ShippingPayment->account_name }}
    • Contact Person Name: {{ $shipmentData->ShippingPayment->contact_person_name }}
    • Contact Person Phone: {{ $shipmentData->ShippingPayment->contact_person_phone }}
    • Contact Person Email: {{ $shipmentData->ShippingPayment->contact_person_email }}
  • @endif
  • Transaction Reference: {{ str_replace('_',' ',$shipmentData->ShippingPayment->transaction_id) }}
  • Payment Status: {{Config::get('status.status.payment_status.'.$shipmentData->ShippingPayment->payment_status)}}
@else

How would like to pay?

* Indicates required field

@include('customerportal.shippmentinfo.payment-detail') @endif
@endsection @section('javascript') @endsection