@extends('layouts.admin') @section('content')

Doctor Ledger List View All Doctors list

@foreach($LedgerList as $Ledger) @endforeach
LedgerID Debit Credit Balance Note Date Action
{{ $Ledger->id }} {{ $Ledger->debit }} {{ $Ledger->credit }} {{ $Ledger->balance }} {{ $Ledger->notes }} {{ date(d/m/Y,strtotime($Ledger->created_at)) }}
@endsection