@extends('theme.default')
@section('content')
| Orderid |
{{ $orderdet->order_id }} |
| Product |
{{ $products[ $orderdet->pid] }} |
| User |
{{ $guest[ $orderdet->uid] }} |
| Quantity |
1 |
| Amount |
{{ $orderdet->amount }} |
| Date |
{{ $orderdet->created_at }} |
Shipping Details
Billing Details
| shipping Name |
{{ $guestdet->shipping_company }} |
| Shipping Address |
{{ $guestdet->shipping_address }} |
| State |
{{ $guestdet->shipping_state }} |
| City |
{{ $guestdet->shipping_city }} |
| Phone |
{{ $guestdet->phone }} |
| PostCode |
{{ $guestdet->postcode }} |
| Message |
{{ $guestdet->shipping_optinal_message }} |
| Billing Name |
{{ $guestdet->billing_name }} |
| Billing Company |
{{ $guestdet->billing_company }} |
| Billing Email |
{{ $guestdet->billing_email }} |
| Billing State |
{{ $guestdet->billing_state }} |
| Billing Address |
{{ $guestdet->billing_address }} |
| Billing Phone |
{{ $guestdet->billing_phone }} |
@endsection