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

Billing

@include('layouts.billing.billing-top-bar.bar')
@php $data = billing_amount_counter(); @endphp
Total Freight Charges

{{number_format($data['Total_Freight'], 2)}}

Billed Freight Charges

{{number_format($data['Billed_Freight'], 2)}}

Unbilled Freight Charges

{{number_format($data['Unbilled_Freight'], 2)}}

Invoice Due Amount

{{number_format($data['Invoice_Due'], 2)}}

@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
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
View Transaction Details
{{$value->order_id}} {{$value->awb_code ? $value->awb_code : 'No Details'}} {{$value->courier_company ? $value->courier_company : 'No Details'}} {{get_order_status_current($value->system_order_status)}} {{$value->awb_assigned_date ? $value->awb_assigned_date : 'No Details'}} @php $total =$value->applied_charges + $value->rto_chnarges + $value->cod_charges; $cod_adjust = 0; if($value->rto_chnarges > 0) { $cod_adjust= -$value->cod_charges; } @endphp {{$total}} {{$value->excess_weight ? $value->excess_weight : 0 }} {{number_format($value->on_hold_amount,2)}} @php $total =$value->applied_charges + $value->rto_chnarges + $value->cod_charges; $cod_adjust = 0; if($value->rto_chnarges > 0) { $cod_adjust= -$value->cod_charges; } @endphp {{$total}} {{$value->total_length}} x {{$value->total_width}} x {{$value->total_height}} cm Volumetric: {{$value->volumemetric_weight}} Kg Entered: {{$value->total_weight}} Kg @php $data = get_weight_reconcil_databy_awb($value->awb_code); @endphp @if($data) @if($data->charged_length && $data->charged_width && $data->charged_height) {{$data->charged_length}} x {{$data->charged_width}} x {{$data->charged_height}} cm @endif @if($data->charged_weight) Weight: {{round_new($data->charged_weight)}} Kg @endif @endif View

Show items per page

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