@extends('layouts.app') @section('content') @php($base = array_merge(['type'=>'expenses'], request()->query()))
{{ __('app.report_filter_hint') }}
| {{ __('app.date') }} | {{ __('app.category') }} | {{ __('app.amount') }} | {{ __('app.currency') }} | {{ __('app.method') }} | {{ __('app.description') }} |
|---|---|---|---|---|---|
| {{ $expense->expense_date?->format('Y-m-d') }} | {{ $expense->category }} | {{ number_format($expense->amount,2) }} | {{ $expense->currency }} | {{ $expense->method }} | {{ Str::limit($expense->description,70) }} |
| {{ __('app.no_records') }} | |||||