@extends('layouts.app') @section('title', 'Profit & Loss') @section('body-class', 'page-profit-loss') @section('breadcrumb')
| @foreach($columnPeriods as $period) | {{ $period['label'] }} | @endforeachTotal |
|---|---|---|
| Gross Profit | @include('reports.profit-loss._period-amount-cells', [ 'amounts' => $totals['periods']['gross_profit'] ?? $totals['gross_profit'], 'total' => $totals['gross_profit'], 'cellClass' => 'fw-bold', ])||
| Net Operating Income | @include('reports.profit-loss._period-amount-cells', [ 'amounts' => $totals['periods']['operating_income'] ?? $totals['operating_income'], 'total' => $totals['operating_income'], 'cellClass' => 'fw-bold', ])||
| Net Income | @include('reports.profit-loss._period-amount-cells', [ 'amounts' => $totals['periods']['net_income'] ?? $totals['net_income'], 'total' => $totals['net_income'], 'cellClass' => 'fw-bold', ])