@lang('modules.report.deliveryAppReportMessage') @php $formattedStartTime = \Carbon\Carbon::parse($startTime)->format('h:i A'); $formattedEndTime = \Carbon\Carbon::parse($endTime)->format('h:i A'); @endphp ({{ $startDate === $endDate ? __('modules.report.salesDataFor') . " $startDate, " . __('modules.report.timePeriod') . " $formattedStartTime - $formattedEndTime" : __('modules.report.salesDataFrom') . " $startDate " . __('app.to') . " $endDate, " . __('modules.report.timePeriodEachDay') . " $formattedStartTime - $formattedEndTime" }})
{{ $totalOrders }}
{{ currency_format($totalRevenue, restaurant()->currency_id) }}
{{ currency_format($totalCommission, restaurant()->currency_id) }}
{{ currency_format($totalDeliveryFees, restaurant()->currency_id) }}
{{ currency_format($netRevenue, restaurant()->currency_id) }}
| @lang('modules.report.deliveryApp') | @lang('modules.report.totalOrders') | @lang('modules.report.totalRevenue') | @lang('modules.report.totalDeliveryFees') | @lang('modules.report.avgOrderValue') | @lang('modules.report.commissionRate') | @lang('modules.report.totalCommission') | @lang('modules.report.netRevenue') |
|---|---|---|---|---|---|---|---|
|
@if($data['delivery_app']->logo_url)
|
{{ $data['total_orders'] }}
|
{{ currency_format($data['total_revenue'], restaurant()->currency_id) }}
|
{{ currency_format($data['total_delivery_fees'], restaurant()->currency_id) }}
|
{{ currency_format($data['avg_order_value'], restaurant()->currency_id) }}
|
@if($data['delivery_app']->commission_type === 'percent')
{{ $data['delivery_app']->commission_value }}%
@else
{{ currency_format($data['delivery_app']->commission_value, restaurant()->currency_id) }} @lang('modules.report.perOrder')
@endif
|
{{ currency_format($data['commission'], restaurant()->currency_id) }}
|
{{ currency_format($data['net_revenue'], restaurant()->currency_id) }}
|
| @lang('modules.report.noDeliveryAppOrders') | |||||||
| @lang('modules.dashboard.total') | {{ $totalOrders }} | {{ currency_format($totalRevenue, restaurant()->currency_id) }} | {{ currency_format($totalDeliveryFees, restaurant()->currency_id) }} | - | - | {{ currency_format($totalCommission, restaurant()->currency_id) }} | {{ currency_format($netRevenue, restaurant()->currency_id) }} |