{{ __("staticwords.Back")}}
@php $user = $order->user; $address = $order->shippingaddress; if($user->country_id !=''){ $c = App\Allcountry::where('id',$user->country_id)->first()->nicename; $s = App\Allstate::where('id',$user->state_id)->first()->name; $ci = App\Allcity::where('id',$user->city_id)->first() ? App\Allcity::where('id',$user->city_id)->first()->name : ''; } @endphp

{{ __('staticwords.CustomerInformation') }}

{{$user->name}}

{{ $user->email }}

{{$user->mobile}}

@if(isset($c))

{{$ci}}, {{ $s }}, {{ $c }}

@endif
{{ __('staticwords.Order Slip') }}

{{ __('staticwords.Total Qty') }}: {{ $sellerorders->sum('qty') }}

{{ date('d/m/Y h:i a', strtotime($order->created_at)) }}

{{ __('staticwords.OrderID') }}: {{ $inv_cus->order_prefix }}{{ $order->order_id }}

{{ __('staticwords.TXN ID:') }}: {{ $order->transaction_id }}

{{ round($total,2) }}

{{ __('staticwords.ShippingAddress') }}
{{ $address->name }}
  • {{ strip_tags($address->address) }}, @php $user = App\User::findorfail($order->user_id); $c = App\Allcountry::where('id',$address->country_id)->first()->nicename; $s = App\Allstate::where('id',$address->state_id)->first()->name; $ci = App\Allcity::where('id',$address->city_id)->first() ? App\Allcity::where('id',$address->city_id)->first()->name : ''; @endphp {{ $ci }}, {{ $s }}, {{ $ci }}
  • {{ $address->pin_code }}
  • {{ $address->phone }}
{{ __('staticwords.BillingAddress') }}
{{ $order->billing_address['firstname'] }}
  • {{ strip_tags($order->billing_address['address']) }} @php $c = App\Allcountry::where('id',$order->billing_address['country_id'])->first()->nicename; $s = App\Allstate::where('id',$order->billing_address['state'])->first()->name; $ci = App\Allcity::where('id',$order->billing_address['city'])->first() ? App\Allcity::where('id',$order->billing_address['city'])->first()->name : ''; @endphp {{ $ci }}, {{ $s }}, {{ $ci }}
  • {{ $order->billing_address['pincode'] ?? '' }}
  • {{ $order->billing_address['mobile'] }}
{{ __('staticwords.PaymentMethod') }}

{{ ucfirst($order->payment_method) }}

@foreach($sellerorders as $invoice) @endforeach
{{ __('staticwords.Invoice No') }} {{ __('staticwords.Item Info') }} {{ __('staticwords.qty') }} {{ __('staticwords.Status') }} {{ __('staticwords.Pricing & Tax') }} {{ __('staticwords.Total') }}
{{ $inv_cus->prefix }}{{ $invoice->inv_no }}{{ $inv_cus->postfix }}
@if(isset($invoice->variant)) @if($invoice->variant->variantimages) @else @endif @endif @if(isset($invoice->simple_product)) @endif
@if(isset($invoice->variant)) @php $orivar = $invoice->variant; @endphp {{substr($orivar->products->name, 0, 25)}}{{strlen($orivar->products->name)>25 ? '...' : ""}} {{ variantname($orivar) }} @endif @if($invoice->simple_product) @php $category = App\Category::with('simpleproducts')->where('id','=',$invoice->simple_product->category_id)->first(); $cat_slug = str_slug($category->title, '-', app()->getLocale()); $subcategory =App\Subcategory::with('simpleproducts')->where('id','=',$invoice->simple_product->subcategory_id)->first(); $subcat_slug = str_slug($subcategory->title, '-', app()->getLocale()); @endphp {{ $invoice->simple_product->product_name }} @endif
@if($invoice->variant) {{ __('staticwords.SoldBy') }}: {{$invoice->variant->products->store->name}} @endif @if($invoice->simple_product) {{ __('staticwords.SoldBy') }} : {{$invoice->simple_product->store->name}} @endif
{{ __('staticwords.Price') }}: {{ round(($invoice->price),2) }}
{{ __('staticwords.Tax') }}: {{ round(($invoice->tax_amount),2) }} @if($invoice->variant) @if($invoice->variant->products->tax_r !='') ({{ $invoice->variant->products->tax_r.'% '.$invoice->variant->products->tax_name }} ) @endif @endif
{{ $invoice->qty }} @if($invoice->status == 'delivered') {{ ucfirst($invoice->status) }} @elseif($invoice->status == 'processed') {{ ucfirst($invoice->status) }} @elseif($invoice->status == 'shipped') {{ ucfirst($invoice->status) }} @elseif($invoice->status == 'return_request') Return Request @elseif($invoice->status == 'returned') Returned @elseif($invoice->status == 'cancel_request') Cancelation Request @elseif($invoice->status == 'canceled') Canceled @elseif($invoice->status == 'refunded') Refunded @elseif($invoice->status == 'ret_ref') Returned & Refunded @else {{ ucfirst($invoice->status) }} @endif

{{ __('staticwords.TotalPrice') }} : {{ round(($invoice->price*$invoice->qty),2) }}

{{ __('staticwords.TotalTax') }} : {{ round(($invoice->tax_amount*$invoice->qty),2) }}

{{ __('staticwords.Shipping Charges') }} : {{ round($invoice->shipping,2) }}

({{ __('staticwords.Price & TAX Multiplied with Quantity') }})

{{ round($invoice->qty*($invoice->price+$invoice->tax_amount)+$invoice->shipping,2) }}
({{ __('staticwords.IncOfTaxShip') }})
{{ __('staticwords.PaymentRecieved') }}: {{ ucfirst($order->payment_receive) }}
{{ __('staticwords.Subtotal') }} : {{ round($total - $hc - $giftcharge,2) }}
{{ __('staticwords.CouponDiscount') }}: {{ round($order->discount,2) }} ({{ $order->coupon }})
{{ __('staticwords.Gift Packaging Charge') }}: + {{ round($giftcharge,2) }}
{{ __('staticwords.HandlingCharge') }}: + {{ round($hc,2) }}
{{ __('staticwords.GrandTotal') }}:
{{ round($total,2) }}