@section('title','Expense Details ') @extends('layouts.master') @section('style') {{-- {{Html::style('assets/public_css/index.css')}} --}} @endsection @section('content')
| {{trans('label.Transection No')}} | {{trans('label.Expense Name')}} | {{trans('label.Expense')}} | {{trans('label.Reverse')}} | {{trans('label.Date')}} |
|---|---|---|---|---|
| {{$detail->id }} | {{$detail->name }} | {{number_format($detail->debit,2) }} | {{ number_format($detail->credit,2) }} | {{ $detail->transection_date }} |
{{trans('label.Balance')}} |
@foreach($totalInfo as $total)
{{ number_format( $total->creTotal-$total->debTotal ,2) }} |
@endforeach
|||