@section('title','Sales History') @extends('layouts.master') @section('style') {{-- {{Html::style('assets/public_css/index.css')}} --}} @endsection @section('content')
| {{trans('label.Invoice Number')}} | {{trans('label.Description')}} | {{trans('label.Debit')}} | {{trans('label.Credit')}} | {{trans('label.Date')}} |
|---|---|---|---|---|
| {{$detail->refeance_no }} | {{trans('label.Sales')}} | {{number_format($detail->debit,2) }} | {{ number_format($detail->credit,2) }} | {{ $detail->transection_date }} |
| {{$detail->refeance_no }} | {{trans('label.Sales Return')}} | {{number_format($detail->debit,2) }} | {{ number_format($detail->credit,2) }} | {{ $detail->transection_date }} |
{{trans('label.Balance')}} |
@foreach($totalInfo as $total)
{{ number_format($total->debTotal - $total->creTotal,2) }} |
@endforeach
|||