{{ Auth::user()->business->business_name }}
{{ Auth::user()->business->address }}
{{ Auth::user()->business->city }} - {{ Auth::user()->business->country }}
{{ __('messages.VATNumber') }}: {{ Auth::user()->business->vat_number }}
Order
OR# :{{ $order->reference }}
--}} @if ($order->qr_code != null) {!! QrCode::size(100)->generate($order->qr_code) !!} @else - @endif
{{ __('messages.CustomersDetail') }}:
{{ __('messages.name') }}: {{ $order->customer_name ?: 'Walking Customer' }}
{{ __('messages.PHONE') }}: {{ $order->customer_phone_number ?? '-' }}
{{ __('messages.section') }}: {{ $order->section_name ?? '-' }}
{{ __('messages.table') }}: {{ $order->section_table_name ?? '-' }}
{{ __('messages.order_persons') }}: {{ $order->order_person ?? '-' }}
{{ __('messages.OrderType') }}: {{ $order->orderType->name ?? '-' }}
{{ __('messages.PaymentDetails') }}:
{{ __('messages.Cachier') }}: | {{ $order->user->name }} |
Total {{ $order->payment_method_name ?? '-' }}: | {{ number_format($order->total, 2) }} {{ Auth::user()->business->currency->symbol }} |
{{ __('messages.Item') }} | {{ __('messages.QTY') }} | {{ __('messages.Price') }} | {{ __('messages.VAT%') }} | {{ __('messages.discount') }} | {{ __('messages.SubTotal') }} ({{ Auth::user()->business->currency->symbol }}) | {{ __('messages.VATAmount') }} ({{ Auth::user()->business->currency->symbol }}) | {{ __('messages.Total') }} ({{ Auth::user()->business->currency->symbol }}) |
---|---|---|---|---|---|---|---|
{{ $orProduct->name }} @if ($orProduct->getOrderPorModOption) @foreach ($orProduct->getOrderPorModOption as $pro_modi) + {{ $pro_modi->name }} : {{ $pro_modi->price }} @endforeach @endif @if ($orProduct->return_qty){{ $orProduct->return_qty }} x Return @endif |
{{ $orProduct->qty }} | {{ $orProduct->price }} @if ($orProduct->getOrderPorModOption) @foreach ($orProduct->getOrderPorModOption as $pro_modi) + {{ $pro_modi->price }} @endforeach @endif |
{{ $orProduct->tax_rate }}% @if ($orProduct->getOrderPorModOption) @foreach ($orProduct->getOrderPorModOption as $pro_modi) + {{ $pro_modi->tax_rate }} @endforeach @endif |
{{-- // discount not applicable on product for now it is on order // --}}
{{ $orProduct->discount == '' ? '--' : $orProduct->discount }} | {{ $orProduct->subtotal }} | {{ $orProduct->total_tax }} | {{ $orProduct->total }} |
{{__('messages.CreatedBy')}}: {{ $order->user->name }}
{{__('messages.Printedby')}}: {{ Auth::user()->name }}
{{__('messages.PrintedDate')}}: {{ date('Y-m-d H:i:s') }}
{{__('messages.TotalBeforeVAT')}}:
{{ number_format($order->subtotal_price, 2) }} {{ Auth::user()->business->currency->symbol }}
{{__('messages.VATAmount')}}:
{{ number_format($total_tax, 2) }} {{ Auth::user()->business->currency->symbol }}
Total Cash:
{{ number_format($order->total_price, 2) }} {{ Auth::user()->business->currency->symbol }}
{{ __('messages.payment_history') }}
{{ $payment->payment_method_name }}
{{ number_format($payment->paid_payment, 2) }} {{ Auth::user()->business->currency->symbol }}
{{ __('messages.payment_return') }}
{{ $paymentReturn->paymentMethod->name }}
{{ number_format($paymentReturn->amount, 2) }} {{ Auth::user()->business->currency->symbol }}
{{ __('messages.CreatedBy') }}: {{ $order->user->name }}
{{ __('messages.Printedby') }}: {{ Auth::user()->name }}
{{ __('messages.PrintedDate') }}: {{ date('Y-M-D h:i:s') }}
Subtotal:
{{ number_format($order->subtotal, 2) }} {{ Auth::user()->business->currency->symbol }}
{{ __('messages.VATAmount') }}:
{{ number_format($order->tax, 2) }} {{ Auth::user()->business->currency->symbol }}
Discount:
- {{ number_format($order->total_discount, 2) }} {{ Auth::user()->business->currency->symbol }}
Total {{ $order->payment_method_name }}:
{{ number_format($order->total, 2) }} {{ Auth::user()->business->currency->symbol }}