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

Orders Page

  • Order Id: {{ $order_details->id }}
    Billing Email: {{ $order_details->billing_email }}
    Billing City: {{ $order_details->billing_city }}
    Order Total: ₹{{ $order_details->billing_total }}
    payment id: {{ $order_details->payment_gateway }}

Products for this Order

{{-- --}} @foreach ($products as $product) {{-- --}} @endforeach
@endsection