@extends('layouts.user-layout') @section('title', 'All Order ') @section('content')

Order Form

{{-- --}} {{-- --}}

Order Section

@foreach($get_orders as $order) @endforeach
Name Total Amount Pay Out User Commission Admin Commission Order Status
@if(isset($order->product)) {{ $order->product->product_name }} @else Product Not Found @endif {{ $order->total_amount ?? ''}} {{ $order->pay_out_user_commission ?? '' }} {{ $order->admin_commission ?? ''}} {{ $order->order_status }}
@endsection @section('script') @endsection