Company Expenses
| Title |
Amount |
Date |
Category |
Paid To |
Paid By |
Payment Method |
Receipt |
Action |
@forelse($expenses as $expense)
| {{ $expense->title }} |
₹{{ number_format($expense->amount, 2) }} |
{{ \Carbon\Carbon::parse($expense->expense_date)->format('d M Y') }} |
{{ $expense->category }} |
{{ $expense->paid_to }} |
{{ $expense->paid_by }} |
{{ $expense->payment_method }} |
@if($expense->receipt)
View
@else
-
@endif
|
|
@empty
| No expenses recorded yet. |
@endforelse
Recurring Expenses
| Title |
Amount |
Start Date |
Recurrence |
Next Payment Date |
Category |
Paid To |
Paid By |
Payment Method |
Receipt |
Status |
Action |
@forelse($recurringExpenses as $recurring)
| {{ $recurring->title }} |
₹{{ number_format($recurring->amount, 2) }} |
{{ \Carbon\Carbon::parse($recurring->start_date)->format('d M Y') }} |
{{ ucfirst($recurring->recurrence) }} |
{{ \Carbon\Carbon::parse($recurring->next_payment_date)->format('d M Y') }} |
{{ $recurring->category }} |
{{ $recurring->paid_to }} |
{{ $recurring->paid_by }} |
{{ $recurring->payment_method }} |
@if($recurring->receipt)
View
@else
-
@endif
|
{{ ucfirst($recurring->status) }}
|
|
@empty
| No recurring expenses recorded yet. |
@endforelse