@extends('layouts.admin') @section('header-content') @endsection @section('content')
Filter

{{$full_name}} Ledger

@if(!empty($ledgers[0]))
Balance: {{$balance}}

@foreach($ledgers as $key=>$ledger) @endforeach
# Date Type Amount Balance
{{$key+1}} {{$ledger['date']}} {{$ledger['type']}} {{$ledger['amount']}} {{round($ledger['balance'],2) }}

@else

No Records Found

@endif
@endsection @section('footer-content') @endsection