@extends('layouts.admin.app') @section('content')

Manage Orders

@if ($message = Session::get('success'))

{{ $message }}

@endif
Order Information
Order Id #00{{$orders->id}}
Order Status {{$orders->order_status}}
Order date {{$orders->created_at}}
Delivery Address

{{$orders->name}}
{{$orders->address}},
{{$orders->city}} {{$orders->pincode}}
{{$orders->country}}
Phone: {{$orders->mobile}}

Customer Information
Customer Name
Email {{$userDetails['name']}}
Phone {{$userDetails['phone']}}
Billing Address

{{$userDetails['name']}}
{{$userDetails['address']}},
{{$userDetails['city']}} {{$userDetails['zip_code']}}
{{$userDetails['country']}}
Phone: {{$userDetails['phone']}}

Items Ordered
@foreach($orders['orderproducts'] as $orderpro) @endforeach
Product Price Quantity Subtotal
{{$orderpro['product_name']}} {{$orders->currency}}{{$orderpro['product_price']}} {{$orderpro['product_qty']}} {{$orderpro['total']}}
Comments History
@csrf @method('PUT')
Payment Type {{$orders->payment_method}}
Order
Comment
Order Totals
Subtotal {{$orders->currency}}0
Coupon {{$orders->currency}}0.00
Grand Total {{$orders->currency}}0
@endsection