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

Products Management

Add New Product
@forelse($products as $product) @empty @endforelse
Product Category Stock Status Actions
@if($product->images->isNotEmpty()) {{ $product->name_en }} @else
@endif
{{ $product->name_en }}
ID: {{ $product->id }}
{{ $product->category->name_en }}
{{ $product->category->name_ar }}
{{ $product->stock }}
@if($product->stock <= $product->stock_threshold) Low Stock @endif
{{ $product->is_active ? 'Active' : 'Inactive' }}
Variations
@csrf @method('DELETE')

No products found

Get started by creating a new product.

Add New Product
{{ $products->links() }}
@endsection