@extends('layouts.default') @php $pageTitle = 'Report List'; @endphp @section('title',$pageTitle) @section('PageHead')
@stop @section('content')

CR Account

@php $totalCr = 0; @endphp @foreach($dataCr as $val) @php $totalCr += @$val->amount; @endphp @endforeach
Code Particulars Amount
{{@$val->cr_account_informations->account_number}} {{@$val->cr_account_informations->account_name}} {{@$val->amount}}

Total {{@$totalCr}}

DR Account

@php $totalDr =0; @endphp @foreach($dataDr as $val) @php $totalDr += @$val->amount; @endphp @endforeach
Code Particulars Amount
{{@$val->dr_account_informations->account_number}} {{@$val->dr_account_informations->account_name}} {{@$val->amount}}

Total {{@$totalDr}}
@stop