@extends('layouts.business.master') @section('title') {{ __('Expense Reports') }} @endsection @section('main_content')

{{ __('Total Amount') }}

{{ currency_format($total_expense, currency: business_currency()) }}

{{ __('Expense Report List') }}

@include('business::print.header')

{{ __('Expense Report List') }}

@csrf
@if(auth()->user()->accessToMultiBranch()) @endif
@if(auth()->user()->accessToMultiBranch()) @endif @include('business::reports.expense.datas')
{{ __('SL') }}.{{ __('Branch') }}{{ __('Amount') }} {{ __('Category') }} {{ __('Expense For') }} {{ __('Payment Type') }} {{ __('Reference Number') }} {{ __('Expense Date') }}
{{ $expense_reports->links('vendor.pagination.bootstrap-5') }}
@endsection