@extends('layouts.admin') @section('page-title', 'Classified Products') @section('content')
You have total {{ $products->total() }} Products
| # | Title | Seller | Detail | Current Stock | Published | Catalog | Today's Deal | Featured | Option |
|---|---|---|---|---|---|---|---|---|---|
| {{ $products->firstItem() + $index }} | {{ $product->vendor?->name ?? '-' }} |
Price: ${{ number_format($product->price, 2) }} Total Sale: {{ $product->sales_count ?? 0 }} Rating: {{ $product->rating ?? 0 }} |
@if($product->variants && $product->variants->count() > 0)
@foreach($product->variants->take(3) as $variant)
{{ $variant->sku ?? $variant->name }}: {{ $variant->stock_quantity }} @endforeach @if($product->variants->count() > 3) +{{ $product->variants->count() - 3 }} more @endif @else {{ $product->stock_quantity }} @endif |
||||||
|
No classified products found Try adjusting your filters |
|||||||||