@section('title','Capita History') @extends('layouts.master') @section('style') {{-- {{Html::style('assets/public_css/index.css')}} --}} @endsection @section('content')
| {{trans('label.Account Number')}} | {{trans('label.Account Name')}} | {{trans('label.Debit')}} | {{trans('label.Credit')}} |
|---|---|---|---|
| {{$detail->account_no }} | {{ $detail->name }} | {{number_format($detail->debitTotal,2) }} | {{ number_format($detail->creditTotal,2) }} |
{{trans('label.Balance')}} |
@foreach($totalInfo as $total)
{{ number_format($total->debTotal - $total->creTotal,2) }} |
@endforeach
||