@extends('admin.master_layout') @section('contant') @push('scripts') @endpush
All Agents balance Report
Total : {{$agents->count();}}
@csrf
 All Agents   
@foreach($agents as $agent) @endforeach
SL Date Agent ID Name Contact Balance(BDT) Actions
{{$loop->iteration}} {{$agent->cdate}} {{$agent->agent_id}} {{$agent->agent->name ?? 'N/A'}} {{$agent->agent->contact ?? 'N/A'}} {{ $agent->amount ?? '0.00' }} Active
Add Agent Balance
@csrf
Agent ID:
Balance Amount
@push('js_scripts') @endpush @endsection