@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)
  • Product Id: {{ $product->id }}
    Product Name: {{ $product->name }}
    {{--
    Product Price: ${{ $product->price }}
    --}}
    Product Quantity: {{ $product->product_quantity }}
  • @endforeach
{{-- --}}
@endsection