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

Wallet

Filter: @php $daterange = explode(' - ', $daterange_fltr); @endphp

Balance Available

Rs. {{$Company->wallet}}

Shopping Cost

Rs. {{$billing_data['Total_Freight']}}

COD Remitted

Rs. {{$billing_data['Total_COD_Remitted']}}

COD Adjusted against shopping cost

Rs. {{$billing_data['Total_Freight'] - $billing_data['Total_COD_Remitted']}}

Recent Transactions

@if(count($Transactions) > 0) @foreach($Transactions as $transaction)
{{ date('d-M-Y',strtotime($transaction->created_at))}}
+{{ $transaction->amount}}
@endforeach @else @endif
@endsection