@extends('layout.header') @section('title') ALIAN | Admin-RetailOrder-Detail @endsection @section('main')

Retail Order Detail

    @if(($retail[0]->order_status==0))
  • Cancel Order
  • @elseif(($retail[0]->order_status==1))
  • Refund
  • @endif
  • Back
  • @if(($retail[0]->order_status==1)||($retail[0]->order_status==0))
  • Print
  • @endif
User Information
{{$retail_user[0]->created_at}}
User Name:

{{$retail_user[0]->Name}}

Contact Information:

{{$retail_user[0]->Phone_no}}

Order Information
Product(s)
MRP
Qty
Value
Total Amount
@foreach($retail as $info)
{{$info->product_name}}
₹{{$info->mrp}}
{{$info->beta_product_quantity}}
₹{{$info->offered}}
₹{{$info->total}}
@endforeach
Subtotal
₹ {{$retail[0]->sub_total}}
Discount
{{$retail[0]->discount}}
Subtotal with discount
₹ {{$retail[0]->sub_tot_dis}}
CGST@9%:
₹{{$retail[0]->CGST}}
SGST@9%:
₹{{$retail[0]->SGST}}
{{--
--}} {{--
IGST@18%:
--}} {{--
₹{{$retail[0]->IGST}}
--}} {{--
--}}
Grand Total:
{{$retail[0]->total_amount}}
@if(($retail[0]->order_status==2)) @elseif(($retail[0]->order_status==0)||($retail[0]->order_status==1))
Payment Information
@if($retail[0]->payment_type=='Cash') Payment Type: {{----}} {{----}} {{----}} @elseif($retail[0]->payment_type=='Paytm') Payment Type: {{----}} {{----}} {{----}} @else Payment Type: @endif
@if($retail[0]->received_amt!=0) Received Amount: ₹received_amt}} disabled> @else Received Amount: ₹ @endif
@if($retail[0]->received_amt!=0) @else Return Change:

@endif
@endif
@if(($retail[0]->order_status==2)) @elseif(($retail[0]->order_status==0)||($retail[0]->order_status==1)) @endif
Salesperson Information
@if(!file_exists(public_path("sales_images/".$user_info[0]->profile_image))) @else @endif

{{$user_info[0]->name}} {{$user_info[0]->user_city}}

Phone Number:

{{$user_info[0]->mobile_no}}

{{----}} @include('includes.scripts_RetailOrder_Detail') @endsection