@php /** @var \Illuminate\Support\Carbon $month */ @endphp

{{ __('Monthly Sales') }} - {{ $month->format('F Y') }}

{{ __('View') }}
{{ __('Revenue') }}
{{ number_format($report['total_revenue'], 2) }}
{{ __('Transactions') }}
{{ $report['transaction_count'] }}
{{ __('vs. Previous Month') }}
@if ($report['percent_change'] === null)
{{ __('N/A') }}
@else
{{ $report['percent_change'] >= 0 ? '+' : '' }}{{ number_format($report['percent_change'], 1) }}%
@endif

{{ __('Daily Revenue') }}

@push('scripts') @vite('resources/js/reports.js') @endpush