@extends('layouts.app') @section('title', 'Product Management') @section('subtitle', 'Manage all products in the marketplace') @section('content')
Review, approve, or reject product listings
| Product | Seller | Price | Stock | Status | Submitted | Actions |
|---|---|---|---|---|---|---|
|
{{ Str::limit($product->name, 30) }}
{{ $product->category }}
|
{{ $product->user->name }}
{{ $product->user->email }}
|
${{ number_format($product->price, 2) }} | {{ $product->quantity }} | {{ ucfirst($product->status) }} | {{ $product->submitted_at ? $product->submitted_at->format('M j, Y') : 'Not submitted' }} |
View
@if($product->isPending())
@endif
|
No products have been submitted yet.