@extends('layouts.userdashboard') @section('content')
@if(!empty($order))

Thanks for your Order,{{ $user->name }} !

Receipt
Receipt Voucher : 1KAU9-84UIL
@if(!empty($orderitems)) @foreach($orderitems as $item)
{{ $item->name }}
{{--
Golden Blue
--}} @if(!empty($item->size))
Size : {{ $item->size }}
@endif @if(!empty($item->color))
Color : {{ $item->color }}
@endif
Qty : {{ $item->qty }}
$ {{ $item->price }}
@endforeach @endif
Track Order
Out for delivary
Delivered

Order Details

Total

$ {{ $order->amount }}

Discount

150

GST 18%

843

Delivery Charges

Free

Invoice Number : 788152

Invoice Date : 22 Jan,2022

Recepits Voucher:18KU-62IIK

@else

No Order to Display.

@endif
@endsection