{{ __('inventory::modules.reports.profit_loss_description') }}
{{ __('inventory::modules.reports.modifier_options_note') }}
{{ __('inventory::modules.reports.total_sales') }}
{{ currency_format($totalSales, restaurant()->currency_id) }}
{{ __('inventory::modules.reports.total_cost') }}
{{ currency_format($totalCost, restaurant()->currency_id) }}
{{ __('inventory::modules.reports.total_profit') }}
{{ currency_format($totalProfit, restaurant()->currency_id) }}
{{ __('inventory::modules.reports.menu_item') }} | {{ __('inventory::modules.reports.category') }} | {{ __('inventory::modules.reports.quantity_sold') }} | {{ __('inventory::modules.reports.avg_price') }} | {{ __('inventory::modules.reports.total_sales') }} | {{ __('inventory::modules.reports.ingredient_cost') }} | {{ __('inventory::modules.reports.profit') }} | {{ __('inventory::modules.reports.profit_margin') }} |
---|---|---|---|---|---|---|---|
{{ $item['item_name'] }} | {{ $item['category_name'] }} | {{ $item['quantity_sold'] }} | {{ currency_format($item['avg_unit_price'], restaurant()->currency_id) }} | {{ currency_format($item['total_sales'], restaurant()->currency_id) }} | {{ currency_format($item['ingredient_cost'], restaurant()->currency_id) }} | {{ currency_format($item['profit'], restaurant()->currency_id) }} | {{ number_format($item['profit_margin'], 1) }}% |
{{ __('inventory::modules.reports.no_data_description') }}