@extends('layout.admin-app') @section('content')

Orders


@foreach($orders as $order) @endforeach
order ID User Name Product Name Total Payment Action
{{$order->id ?? ''}} {{$order->user->name}} {{$order->product->name}} ${{$order->total_payment}} Show Details
@endsection