@extends('admin.layout') @section('title', 'Products Management') @section('content')

Products

Add Product
@forelse($products as $product) @empty @endforelse
Image Name Category Price Stock Status Actions
@if($product->image) {{ $product->name }} @else
@endif
{{ $product->name }}
{{ $product->category->name }} ৳{{ number_format($product->price, 2) }} {{ $product->quantity }} {{ $product->is_active ? 'Active' : 'Inactive' }} Edit
@csrf @method('DELETE')
No products found.
{{ $products->links() }}
@endsection