@extends('layouts.bootstrap') @section('title', 'Profit & Loss Report') @section('content')
Period: {{ $startDate->format('F d, Y') }} to {{ $endDate->format('F d, Y') }}
| {{ \App\Models\Income::getCategoryDisplayName($category) }} | ${{ number_format($amount, 2) }} |
| No income recorded for this period | |
| Total Revenue | ${{ number_format($totalIncome, 2) }} |
|---|---|
| {{ \App\Models\Expense::getCategoryDisplayName($category) }} | ${{ number_format($amount, 2) }} |
| No expenses recorded for this period | |
| Total Expenses | ${{ number_format($totalExpenses, 2) }} |
|---|---|
| Total Revenue | ${{ number_format($totalIncome, 2) }} |
| Total Expenses | (${{ number_format($totalExpenses, 2) }}) |
| Net {{ $totalIncome - $totalExpenses >= 0 ? 'Profit' : 'Loss' }} | ${{ number_format($totalIncome - $totalExpenses, 2) }} |
|---|