@extends('layouts.admin') @section('content') @if ($errors->any())
Manage products with their respective categories.
| Image | Product Details | Category | Status | Actions |
|---|---|---|---|---|
|
|
{{ $product->title }}
{{ Str::limit($product->description, 40) }}
|
{{ $product->category->name ?? 'N/A' }} | {{ $product->status == 1 ? 'Active' : 'Inactive' }} |
|