@extends('layouts.app_rest') @section('content')
Total Amount

{{number_format($transactions->sum('final_total'), 2)}}

Total Paid

{{number_format($transactions->sum('amount_paid'), 2)}}

Total Due

{{number_format($transactions->sum('due'), 2)}}

@can('expense.create') Add New @endcan @can("expense.update") @endcan @can('expense.delete') @endif
@can('expense.view')
{!! Form::text('date_range', null, ['placeholder' => __('Select Date Range'), 'class' => 'form-control', 'id' => 'product_sr_date_filter', 'readonly']); !!}
Date Ref No Expense Type Expense For Category Total Amount Paid Due Payment Status
@endcan
@endsection @section('javascript') @endsection