@extends('layouts.front')
@section('content')
Order Date {{date('d-M-Y',strtotime($order->created_at))}} Paid Amount: {{$order->currency_sign}}{{ round($order->pay_amount * $order->currency_value , 2) }} Payment Method: {{$order->method}} {{$order->charge_id}} {{$order->txnid}} Ship To Address Pick Up Paid Amount: {{$order->currency_sign}}{{ round($order->pay_amount * $order->currency_value , 2) }} Payment Method: {{$order->method}} {{$order->charge_id}} {{$order->txnid}}
My Order Details
Order# {{$order->order_number}} [{{$order->status}}]
Billing Address
Name: {{$order->customer_name}}
Email: {{$order->customer_email}}
Phone: {{$order->customer_phone}}
Address: {{$order->customer_address}}
{{$order->customer_city}}-{{$order->customer_zip}}
Payment Information
Shipping Address
Name: {{$order->shipping_name == null ? $order->customer_name : $order->shipping_name}}
Email: {{$order->shipping_email == null ? $order->customer_email : $order->shipping_email}}
Phone: {{$order->shipping_phone == null ? $order->customer_phone : $order->shipping_phone}}
Address: {{$order->shipping_address == null ? $order->customer_address : $order->shipping_address}}
{{$order->shipping_city == null ? $order->customer_city : $order->shipping_city}}-{{$order->shipping_zip == null ? $order->customer_zip : $order->shipping_zip}}
@else
PickUp Location
Address: {{$order->pickup_location}}
@endif
Shipping Method
@if($order->shipping == "shipto")
Billing Address
Name: {{$order->customer_name}}
Email: {{$order->customer_email}}
Phone: {{$order->customer_phone}}
Address: {{$order->customer_address}}
{{$order->customer_city}}-{{$order->customer_zip}}
Payment Information
Ordered Products:
@foreach($cart->items as $product)
ID#
Name
Quantity
Size
Color
Price
Total
@endforeach
{{ $product['item']['id'] }}
@if($product['item']['user_id'] != 0)
@php
$user = App\Models\User::find($product['item']['user_id']);
@endphp
@if(isset($user))
{{strlen($product['item']['name']) > 30 ? substr($product['item']['name'],0,30).'...' : $product['item']['name']}}
@else
{{strlen($product['item']['name']) > 30 ? substr($product['item']['name'],0,30).'...' : $product['item']['name']}}
@endif
@endif
@if($product['item']['type'] != 'Physical')
@if($order->payment_status == 'Completed')
@if($product['item']['file'] != null)
Download
@else
Download
@endif
@if($product['license'] != '')
View License
@endif
@endif
@endif
{{$product['qty']}} {{ $product['item']['measure'] }}
{{$product['size']}}
{{$order->currency_sign}}{{round($product['item']['price'] * $order->currency_value,2)}}
{{$order->currency_sign}}{{round($product['price'] * $order->currency_value,2)}}
The Licenes Key is :