@extends('layouts.app') @push('datatable-styles') @include('sections.datatable_css') @endpush @section('filter-section')
@lang('app.status')
@lang('app.all')
@lang('app.pending')
@lang('app.approved')
@lang('app.rejected')
@lang('app.clearFilters')
@lang('app.employee')
@lang('app.all')
@foreach ($employees as $item) @endforeach
@lang('app.project')
@lang('app.all')
@foreach ($projects as $project)
{{ mb_ucwords($project->project_name) }}
@endforeach
@lang('app.category')
@lang('app.all')
@foreach($categories as $category)
{{ mb_ucwords($category->category_name) }}
@endforeach
@endsection @php $recurringExpensesPermission = user()->permission('manage_recurring_expense'); @endphp @section('content')
@if ($recurringExpensesPermission == 'all')
@lang('modules.expensesRecurring.addExpense')
@endif
{!! $dataTable->table(['class' => 'table table-hover border-0 w-100']) !!}
@endsection @push('scripts') @include('sections.datatable_js') @endpush