{{-- resources/views/expenses/index.blade.php --}} @extends('layouts.app') @section('title', 'Expenses') @section('page_title', 'Expenses') @section('page_subtitle', 'Track and manage property expenses') @section('content') {{-- Stats --}}
No expenses found
Add First Expense| Reference | Title | Category | Vendor | Date | Amount | Status | |
|---|---|---|---|---|---|---|---|
| {{ $expense->reference }} |
{{ $expense->title }}
@if($expense->description)
{{ Str::limit($expense->description, 50) }}
@endif
|
@if($expense->category) @if($expense->category->color) @endif {{ $expense->category->name }} @else — @endif | {{ $expense->vendor ?? '—' }} | {{ $expense->expense_date->format('d M Y') }} | {{ $expense->currency }} {{ number_format($expense->amount, 2) }} | {{ ucfirst($expense->status) }} | View → |