@extends('layouts.admin') @section('page-title', 'All Products') @section('content')
View all products across the platform
| Product | Vendor | Category | Price | Status | Actions |
|---|---|---|---|---|---|
| {{ $product->name }} | {{ $product->vendor?->name ?? 'Admin' }} | {{ $product->category?->name ?? '-' }} | ${{ number_format($product->price, 2) }} | {{ ucfirst($product->status) }} | View |
| No products found | |||||