@extends('layouts.app')
@section('custom-css')
@endsection
@section('content')
@if (session('sucess'))
{{ session('sucess') }}
@endif
@if ($errors->has('collect_amount'))
{{$errors->getBag('default')->first('collect_amount')}}
@endif
Today Delivered Parcels
Rs. {{ $staffCashCollection['todayOrder'] }}
Remaing Parcels
Rs. {{ $staffCashCollection['remaingOrder'] }}
Total Cash
Rs. {{ $staffCashCollection['totalCashByRider'] }}
Deposit Cash
Rs. {{ $staffCashCollection['totalCollectCashFromRider'] }}
Remaing Cash
Rs. {{ $staffCashCollection['remainingCash'] }}
@if($staffId)
Parcels
@if($rackBalancing['deliveredParcels'] != 0)
@foreach($rackBalancing['deliveredParcels'] as $parcel)
{{$parcel}}
@endforeach
@endif
Cancelled
@if($rackBalancing['cancelledParcels'] != 0)
@foreach($rackBalancing['cancelledParcels'] as $parcel)
{{$parcel}}
@endforeach
@endif
Reatttempt
@if($rackBalancing['requestReattemptParcels'] != 0)
@foreach($rackBalancing['requestReattemptParcels'] as $parcel)
{{$parcel}}
@endforeach
@endif
At AHL Warehouse
@if($rackBalancing['atAHLParcels'] != 0)
@foreach($rackBalancing['atAHLParcels'] as $parcel)
{{$parcel}}
@endforeach
@endif
@endif
@endsection