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

Seller Order Form

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

Seller Order Section

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