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