Monthly Revenue
${{ number_format($dashboardData['financial']['paidThisMonth'] ?? ($dashboardData['financial']['revenue'] ?? 0)) }}
@php $revMom = $dashboardData['financial']['revenue_mom'] ?? null; @endphp
@if($revMom === null)
No prior month data
@elseif($revMom < 0)
{{ $revMom }}% vs last month
@else
+{{ $revMom }}% vs last month
@endif