@if(!isOrderPrefixEnabled())
@lang('modules.order.orderNumber')
@if (count($receiptLanguages) > 1)
@lang('modules.order.orderNumber', [], $receiptLanguages[1])
@endif
#SAMPLE-001
{{ now(timezone())->format(dateFormat() . ' ' . timeFormat()) }}
@if ($tableNumber)
@lang('modules.settings.tableNumber')
@if (count($receiptLanguages) > 1)
@lang('modules.settings.tableNumber', [], $receiptLanguages[1])
@endif
: 01
@endif
@if ($totalGuest)
@lang('modules.order.noOfPax')
@if (count($receiptLanguages) > 1)
@lang('modules.order.noOfPax', [], $receiptLanguages[1])
@endif
: 2
@endif
@if ($waiter)
@lang('modules.order.waiter')
@if (count($receiptLanguages) > 1)
@lang('modules.order.waiter', [], $receiptLanguages[1])
@endif
: John Smith
@endif
@if ($customerName)
@lang('modules.customer.customer')
@if (count($receiptLanguages) > 1)
@lang('modules.customer.customer', [], $receiptLanguages[1])
@endif
: Jane Doe
@endif
@if ($customerAddress)
@lang('modules.customer.customerAddress')
@if (count($receiptLanguages) > 1)
@lang('modules.customer.customerAddress', [], $receiptLanguages[1])
@endif
: 123 Sample Street
@endif
@if ($customerPhone)
@lang('modules.customer.phone')
@if (count($receiptLanguages) > 1)
@lang('modules.customer.phone', [], $receiptLanguages[1])
@endif
: +1 234 567 8900
@endif
@lang('modules.order.subTotal')
@if (count($receiptLanguages) > 1)
@lang('modules.order.subTotal', [], $receiptLanguages[1])
@endif
:
{{ currency_format(35, restaurant()->currency_id) }}
@if ($restaurantTax)
Tax (10%)
@if (count($receiptLanguages) > 1)
@lang('modules.order.tax', [], $receiptLanguages[1]) (10%)
@endif
:
{{ currency_format(3.5, restaurant()->currency_id) }}
@endif
@lang('modules.order.total')
@if (count($receiptLanguages) > 1)
@lang('modules.order.total', [], $receiptLanguages[1])
@endif
:
{{ currency_format(38.5, restaurant()->currency_id) }}
@if ($showPaymentStatus)
@lang('modules.order.paymentStatus')
@if (count($receiptLanguages) > 1)
@lang('modules.order.paymentStatus', [], $receiptLanguages[1])
@endif
:
@lang('modules.order.paid')
@endif