@extends('layouts.default')
@php $pageTitle = 'Report List'; @endphp
@section('title',$pageTitle)
@section('PageHead')
@stop
@section('content')
CR Account
| Code |
Particulars |
Amount |
@php $totalCr = 0; @endphp
@foreach($dataCr as $val)
@php $totalCr += @$val->amount; @endphp
| {{@$val->cr_account_informations->account_number}} |
{{@$val->cr_account_informations->account_name}} |
{{@$val->amount}} |
@endforeach
|
| Total |
{{@$totalCr}} |
DR Account
| Code |
Particulars |
Amount |
@php $totalDr =0; @endphp
@foreach($dataDr as $val)
@php $totalDr += @$val->amount; @endphp
| {{@$val->dr_account_informations->account_number}} |
{{@$val->dr_account_informations->account_name}} |
{{@$val->amount}} |
@endforeach
|
| Total |
{{@$totalDr}} |
@stop