{{ __('Date') }} {{ __('Category') }} {{ __('Description') }} {{ __('Amount') }} {{ __('Recorded By') }} @forelse ($rows as $row) {{ $row->date->format('M d, Y') }} {{ $row->category }} {{ Str::limit($row->description, 50) }} -{{ currency($row->amount) }} {{ $row->user->name ?? 'System' }} @empty {{ __('No expenses found.') }} @endforelse