@extends('theme.default') @section('content')
@foreach($orderdet as $orderdet) @endforeach
OrderNo Product Quantity Amount
{{$orderdet->order_id}} {{ $products[$orderdet->pid] }} 1 {{$orderdet->amount }}
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