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

Billing

@include('layouts.billing.billing-top-bar.bar')
@php $daterange = explode(' - ', $daterange_fltr); @endphp
@if($orders->count()) @foreach($orders as $value) @endforeach @else @endif
AWB Assignd Date
Order Id
AWB Number
Courier
Initial Amount Charged
On Hold Amount
{{date('d M, Y', strtotime($value->awb_assigned_date))}} {{$value->order_id}} {{$value->awb_code ? $value->awb_code : 'No Details'}} {{$value->courier_company ? $value->courier_company : 'No Details'}} {{$value->charges}} FWD: {{$value->on_hold_amount ? $value->on_hold_amount : 0 }} RTO: {{$value->rto_chnarges ? $value->rto_chnarges : 0 }}

Show items per page

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