{{ __('Monthly Profit & Loss Report') }}

{{ __('Month') }}: {{ $month }}
{{ __('Description') }} {{ __('Amount') }}
{{ __('Total Sales (Income)') }} {{ number_format($sales, 2) }}
{{ __('Total Purchases (Cost)') }} {{ number_format($purchases, 2) }}
{{ __('Total Expenses') }} {{ number_format($expenses, 2) }}
{{ $profit >= 0 ? __('Net Profit') : __('Net Loss') }} {{ number_format(abs($profit), 2) }}
{{ __('Generated on') }} {{ now()->format('Y-m-d H:i') }}