@extends('layouts.admin') @section('page-title', 'All Products') @section('content')

All Products

View all products across the platform

@forelse($products as $product) @empty @endforelse
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
@if($products->hasPages())
{{ $products->links() }}
@endif @endsection