@extends('layouts.app') @section('title', __('app.expenses')) @section('content')
{{ __('app.expense_hint') }}
| {{ __('app.date') }} | {{ __('app.category') }} | {{ __('app.amount') }} | {{ __('app.currency') }} | {{ __('app.method') }} | {{ __('app.description') }} | {{ __('app.action') }} |
|---|---|---|---|---|---|---|
| {{ $expense->expense_date?->format('Y-m-d') }} | {{ $expense->category }} | {{ number_format($expense->amount,2) }} | {{ $expense->currency ?? 'AFN' }} | {{ $expense->method }} | {{ Str::limit($expense->description, 70) }} | {{ __('app.edit') }} |
| {{ __('app.no_records') }} | ||||||