@extends('layouts.master') @push('css') @endpush @section('content')
| A/C # | Title | Opening | Current | Balance | |||
|---|---|---|---|---|---|---|---|
| Debit | Credit | Debit | Credit | Debit | Credit | ||
| {{ $row['title'] }} | |||||||
| {{ $row['ac'] }} | {{ $row['title'] }} | ||||||
| {{ $row['ac'] }} | {{ $row['title'] }} | {{ $row['opening_debit'] ? number_format($row['opening_debit'], 0) : '' }} | {{ $row['opening_credit'] ? number_format($row['opening_credit'], 0) : '' }} | {{ $row['current_debit'] ? number_format($row['current_debit'], 0) : '' }} | {{ $row['current_credit'] ? number_format($row['current_credit'], 0) : '' }} | {{ $row['balance_debit'] ? number_format($row['balance_debit'], 0) : '' }} | {{ $row['balance_credit'] ? number_format($row['balance_credit'], 0) : '' }} |
| {{ $row['title'] }} — کُل | {{ $row['opening_debit'] ? number_format($row['opening_debit'], 0) : '' }} | {{ $row['opening_credit'] ? number_format($row['opening_credit'], 0) : '' }} | {{ $row['current_debit'] ? number_format($row['current_debit'], 0) : '' }} | {{ $row['current_credit'] ? number_format($row['current_credit'], 0) : '' }} | {{ $row['balance_debit'] ? number_format($row['balance_debit'], 0) : '' }} | {{ $row['balance_credit'] ? number_format($row['balance_credit'], 0) : '' }} | |
| Grand Total کُل مجموعہ | {{ $grandOpeningDebit ? number_format($grandOpeningDebit, 0) : '' }} | {{ $grandOpeningCredit ? number_format($grandOpeningCredit, 0) : '' }} | {{ number_format($grandTotalDebit, 0) }} | {{ number_format($grandTotalCredit, 0) }} | {{ $grandBalanceDebit ? number_format($grandBalanceDebit, 0) : '' }} | {{ $grandBalanceCredit ? number_format($grandBalanceCredit, 0) : '' }} | |