@extends('admin_dashboard') @section('admin')

Take an Advance

Cash In Hand: {{ $cash_total }}





@foreach($transactions ?? [] as $t) @endforeach @if(empty($transactions) || count($transactions) === 0) @endif
Deposit Date ID No # Name Deposit Amount DELETE
{{ \Carbon\Carbon::parse($t->date)->format('d-m-Y') }} {{ $t->subledger_code }} {{ $t->client_name }} {{ number_format($t->cr_amount, 2) }}
@csrf @method('DELETE')
No transactions found
@endsection