@if ($userBs->logo) @else @endif {{ __('INVOICE') }}
{{ __('Bill to') }}:
{{ ucfirst($order->billing_fname) }} {{ ucfirst($order->billing_lname) }}
{{ $order->billing_address }}
{{ $order->billing_city }} , {{ $order->billing_state }}
{{ $order->billing_country }}
{{ $order->billing_email }}
{{ __('Order Details') }}:
{{ __('Order ID') }}: # {{ $order->order_number }}
{{ __('Payment Method') }}: {{ $order->method }}
{{ __('Payment Status') }}:{{ $order->payment_status }}
{{ __('Order Date') }}: {{ \Illuminate\Support\Carbon::now()->format('d/m/Y') }}
@foreach ($order->orderitems as $item) @endforeach
{{ __('Title') }} {{ __('Quantity') }} {{ __('Price') }}
{{ $item->title }} {{ $item->qty }} {{ $be->base_currency_text_position == 'left' ? $be->base_currency_text : '' }} {{ $item->price }} {{ $be->base_currency_text_position == 'right' ? $be->base_currency_text : '' }}
@if ($item->variations != 'null') @php $variations = json_decode($item->variations); @endphp @foreach ($variations as $k => $vitm)
{{ $vitm->name }} ({{ $k }}) : {{ $be->base_currency_text_position == 'left' ? $be->base_currency_text : '' }} {{ $vitm->price }} {{ $be->base_currency_text_position == 'right' ? $be->base_currency_text : '' }}
@endforeach @endif
@if ($order->tax) {{ __('Tax') }}: {{ $be->base_currency_text_position == 'left' ? $be->base_currency_text : '' }} {{ $order->tax }}
{{ $be->base_currency_text_position == 'right' ? $be->base_currency_text : '' }}
@endif @if ($order->shipping_charge) {{ __('Shipping charge') }}: {{ $be->base_currency_text_position == 'left' ? $be->base_currency_text : '' }} {{ $order->shipping_charge }}
{{ $be->base_currency_text_position == 'right' ? $be->base_currency_text : '' }}
@endif @if ($order->discount) {{ __('Discount') }}: {{ $be->base_currency_text_position == 'left' ? $be->base_currency_text : '' }} {{ $order->discount }}
{{ $be->base_currency_text_position == 'right' ? $be->base_currency_text : '' }}
@endif @if ($order->cart_total) {{ __('Cart total') }}: {{ $be->base_currency_text_position == 'left' ? $be->base_currency_text : '' }} {{ $order->cart_total }}
{{ $be->base_currency_text_position == 'right' ? $be->base_currency_text : '' }}
@endif {{ __('Total') }}: {{ $be->base_currency_text_position == 'left' ? $be->base_currency_text : '' }} {{ $order->total }} {{ $be->base_currency_text_position == 'right' ? $be->base_currency_text : '' }}
{{ __('Thanks & Regards') }},
{{ $userBs->website_title }}