@extends('layouts.admin') @section('title', 'Profit & Loss Report - ' . $event->name) @section('styles') @endsection @section('content')
| Invoice # | Amount | Date |
|---|---|---|
| {{ $invoice->invoice_number }} | KSh {{ number_format($invoice->total_amount, 2) }} | {{ $invoice->created_at->format('M d, Y') }} |
| Total Revenue | KSh {{ number_format($income, 2) }} |
No invoices found for this event
| Description | Amount | Date |
|---|---|---|
| {{ $expense->description }} | KSh {{ number_format($expense->amount, 2) }} | {{ $expense->created_at->format('M d, Y') }} |
| Total Expenses | KSh {{ number_format($expenses, 2) }} |
No expenses found for this event