@extends('admin.layout.app') @section('body')

Main Expenses

Add Expense
{{-- ساده فلټرونه --}}
Reset {{-- Export/Print (Frontend) --}}
@forelse($expenses as $e) @empty @endforelse
# Title Amount Category Currency Date Actions
{{ $e->id }} {{ $e->title }} {{ number_format($e->amount, 2) }} {{ $e->category->name ?? 'Other' }} {{ $e->currency->name ?? 'AED' }} {{ $e->date }}
@csrf @method('DELETE')
No expenses found.
{{ $expenses->links() }}
{{-- Export libs --}} @endsection