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

Trial Balance ({{ $fromDate }} to {{ $toDate }})

Back Export to PDF Export to Excel
@foreach($trialbalance as $row) @endforeach
Account Opening Debit Credit Balance
{{ $row->Account_Title }} {{ number_format($row->OpeningBalance + $row->OpeningBalance2, 2) }} {{ number_format($row->TotalAmountDR, 2) }} {{ number_format($row->TotalAmountCR, 2) }} {{ number_format($row->TotalAmountDR+$row->OpeningBalance + $row->OpeningBalance2+$row->TotalAmountCR, 2) }}
@endsection