@extends('layouts.app') @section('content')
@include('layouts.includes.header')

Shipping Charges

@include('layouts.billing.top-bar.bar')
@if($orders->count()) @foreach($orders as $value) @endforeach @else @endif
Order ID

Search By Order ID

{!! Form::open(array('url'=>URL::current(),'method' => 'GET')) !!}
{!! Form::close() !!}
AWB Number

Search By AWB No

Shipping Details

Search By Courier

Shipping Status

Shipping Status

AWB Assignd Date
Applied Weight Charges
Excess Weight Charges
On Hold Amount
Total Freight Charges
Entered Weight & Dimensions
Charged Weight & Dimensions
{{$value->order_id}} {{$value->awb_code ? $value->awb_code : 'No Details'}} {{$value->courier_company ? $value->courier_company : 'No Details'}} @if($value->system_order_status == 1) READY TO SHIP @elseif($value->system_order_status == 2) PICKUP SCHEDULED @elseif($value->system_order_status == 4) CANCELLED @endif {{$value->awb_assigned_date ? $value->awb_assigned_date : 'No Details'}} {{$value->applied_weight}} {{$value->excess_weight ? $value->excess_weight : 0 }} {{$value->on_hold_amount ? $value->on_hold_amount : 0 }} @php $res = get_Amount_hold($value->id); @endphp @if($res) Amount refunds: {{$res}} @endif {{$value->charges}} {{$value->total_length}} x {{$value->total_width}} x {{$value->total_height}} cm Volumetric: {{$value->volumemetric_weight}} Kg Entered: {{$value->total_weight}} Kg {{$value->total_length}} x {{$value->total_width}} x {{$value->total_height}} cm Weight: {{round_new($value->total_weight)}} Kg

Show items per page

{{ $orders->appends(request()->query())->links() }}
@endsection