@extends('layouts.app') @section('content')
Branch: {{ $branchName }} | As at {{ \Carbon\Carbon::parse($dateTo)->format('d/m/Y') }}
| A/C Code | Account Description | Amount | Total |
|---|---|---|---|
| {{ $type }} | |||
| {{ $data['account_code'] }} | {{ $mainAccountName }} | @if(isset($data['balance']) && $data['balance'] != 0) {{ number_format($data['balance'], 2) }} @endif | @if(isset($data['total_balance']) && $data['total_balance'] != 0) {{ number_format($data['total_balance'], 2) }} @endif |
| {{ $sub['sub_account_code'] }} | {{ $sub['sub_account_name'] }} | @if($sub['balance'] != 0) {{ number_format($sub['balance'], 2) }} @endif | {{ number_format($sub['balance'], 2) }} |
Try adjusting your filters or check if there are any transactions in the selected period.