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

Billing

@include('layouts.billing.billing-top-bar.bar')
@php $data = billing_amount_counter(); @endphp
COD Available

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

Last COD Remitted

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

Total COD Remitted

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

Total Reversal Amount

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

Remittance Initiated

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

@if(count($CodRemittances) > 0) @foreach($CodRemittances as $codremittance) @if($codremittance->ammount_from_cod =='Yes') @else @endif @endforeach @else @endif
Date
CRF Id

Search By Channel

UTR

Search By Order ID

{{--

Filter By Status

{!! Form::open(array('url'=>URL::current(),'method' => 'GET')) !!}
{!! Form::close() !!}
--}}
COD Available
Freight Charges From COD
Early COD Charges
RTO Reversal Amount
Remittance Amount
Remittance Method
Status
Remarks
{{$codremittance->created_at}} {{$codremittance->crf_id}} {{$codremittance->utr}} ₹ {{number_format($codremittance->cod_available_total,2)}} ₹ {{number_format($codremittance->freight_charge_from_cod_total,2)}} ₹ {{number_format($codremittance->early_cod_charges,2)}} ₹ {{number_format($codremittance->rto_reversal_amount_total,2)}}₹ {{ number_format($codremittance->cod_available_total - $codremittance->freight_charge_from_cod_total - $codremittance->rto_reversal_amount_total,2)}}₹ {{number_format($codremittance->cod_available_total,2)}}{{$codremittance->remittance_method}} {{ $codremittance->status }} {{$codremittance->remarks}}

Show items per page

{{$CodRemittances->links('layouts.pagination.default',['paginator' => $CodRemittances])}}
@include('layouts.includes.footer')
@endsection