Invoice
InvoiceCurrent Status.
Order Id : {{$order->order_id}}
Status : @if($order->status == 1) Confirmed @elseif($order->status == 2) Pending @elseif($order->status == 3) Shipped @elseif($order->status == 4) Out for delivery @elseif($order->status == 5) Arriving Tomorrow @endif
Payment Details
Coupon Detail : {{$coupon_detail->coupon}} | {{$coupon_detail->percentage}} % | {{$coupon_detail->thresh_hold_value}}
Discount : {{$order->discount_amount}}/-
Amount Without Discount : {{$order->without_discount_amount}}/-
Order Total : {{$order->total}}
Bank Details
mihpayid : {{$order->mihpayid}}
Mode : {{$order->mode}}
Bank Status : {{$order->bank_status}}
Bank Ref Number : {{$order->bank_ref_num}}
Error: {{$order->error}}
Error Message: {{$order->error_message}}
Special Instructions
{{$order->ordernote}}
-
@foreach ($errors->all() as $error)
- {{ $error }} @endforeach
Products In Order
# | Product Title | Product SKU | Color | Size | Quantity | MRP | Discount Price | Sub Total | Date |
---|---|---|---|---|---|---|---|---|---|
{{$sr}} |
@if($productsInOrder->getProductInfo) {{$productsInOrder->getProductInfo->title}} @endif |
{{-- @php
$productInfo = App\Product::where('id',$productsInOrder->product_id)->first();
@endphp --}}
{{-- @if(!empty($productInfo)) --}}
{{$productsInOrder->sku}} {{-- @endif --}} |
@if($productsInOrder->getColorInfo)
{{$productsInOrder->getColorInfo->color}} @endif |
{{-- @if($productsInOrder->getSizeInfo)
{{$productsInOrder->getSizeInfo->size}} @endif --}}{{$productsInOrder->size}} |
{{$productsInOrder->quantity}} |
{{$productsInOrder->mrp_price}} |
{{$productsInOrder->discount_price}} |
{{$productsInOrder->sub_total}} |
{{ date('d/m/Y' ,strtotime($productsInOrder->created_at)) }} |
Offer Products In Order
{{--# | Product Title | Product SKU | Product Quantity |
---|---|---|---|
{{$sr}} |
@if($offerProductsInOrder->getProductInfo) {{$offerProductsInOrder->getProductInfo->title}} @endif |
{{-- @php
$productInfo = App\Product::where('id',$productsInOrder->product_id)->first();
@endphp --}}
{{-- @if(!empty($productInfo)) --}}
@if($offerProductsInOrder->getProductInfo)
{{$offerProductsInOrder->getProductInfo->sku}} @endif {{-- @endif --}} |
{{$offerProductsInOrder->offer_product_quantity}} |
Billing Address :
@if(!empty($billing_address_details) && gettype($billing_address_details) == 'object') @foreach( $billing_address_details as $key => $detail ){{$key}} : {{$detail}}
@endforeach @endifShipping Address :
{{-- @if( gettype($shipping_address_details) == 'array' && count($shipping_address_details) != 0) --}} @if(!empty($shipping_address_details) && gettype($shipping_address_details) == 'object') @foreach( $shipping_address_details as $key => $detail ){{$key}} : {{$detail}}
@endforeach @endif