@extends('admin.master') @section('content')
All seller products
| # | Image | Name | Shop | Category | Seller Price | Final Price | Commission | Seller Payable | Admin Earning | Status | Action |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $products->firstItem() + $key }} |
@if($product->thumbnail?->file_path)
|
{{ $product->name }}
SKU: {{ $product->sku }}
|
{{ $product->shop?->shop_name ?? '—' }} | {{ $product->category?->name ?? '—' }} | ৳{{ number_format($product->seller_price, 2) }} | ৳{{ number_format($product->final_price, 2) }} | {{ number_format($product->commission_rate, 2) }}% ৳{{ number_format($product->commission_amount, 2) }} | ৳{{ number_format($product->seller_payable, 2) }} | ৳{{ number_format($product->admin_earning, 2) }} | @php $statusClass = match($product->status) { 'active' => 'badge-active', 'draft' => 'badge-draft', default => 'badge-inactive', }; @endphp {{ ucfirst($product->status) }} | |
| No product found. | |||||||||||