@extends('layout.header') @section('title') ALIAN | Pre-Orders @endsection @section('main')

Pre-Order Detail

Store Information
{{$preorders[0]->created_at}} PM {{--06:30 PM--}}
Store Name:

{{$preorders[0]->store_name}}

Address:

{{$preorders[0]->store_name}} {{$preorders[0]->store_address}},{{$preorders[0]->store_city}}, {{$preorders[0]->store_state}},{{$preorders[0]->store_pincode}}.

Contact Information:

{{$preorders[0]->store_mobile}}

Order Information
Product(s)
Per Piece
Qty
Offered Price
Total Amount
@foreach($preorders as $product)
{{$product->product_name}}
₹{{$product->product_original_price}}
{{$product->product_quantity}}
₹{{$product->product_offered_price}}
₹{{$product->product_total_price}}
@endforeach
Subtotal
₹{{$preorders->sum('product_total_price')}}
Discount
{{$preorders[0]->discount}}%
CGST@9%:
₹{{$preorders[0]->cgst}}
SGST@9%:
₹{{$preorders[0]->sgst}}
IGST@18%:
₹{{$preorders[0]->igst}}
Grand Total:
₹{{$preorders[0]->grand_total}}
Salesperson Information
@if(!file_exists(public_path("sales_images/".$preorders[0]->profile_image))) @else @endif {{----}}

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

Phone Number:

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

@include('includes.scripts_print') @endsection