S.P NAME: {{$ref->name}}
| SNO | DATE | PARTICULAR | DEBIT | CREDIT | BALANCE |
|---|---|---|---|---|---|
| {{++$key}} | {!! date('d/M/y', strtotime($row->created_at)) !!} | {{$row->title}} {{$row->client->name}} | @if($row->type != "income") {{$row->amount}} @else 0.00 @endif | @if($row->type == "income") {{$row->amount}} @else 0.00 @endif | {{$row->client->balance}} @php $total = $total + $row->client->balance; @endphp |