@extends('layouts.admin-modern') @section('title', 'Gestion de l\'Inventaire') @section('page-title', 'Gestion de l\'Inventaire') @section('content')
Visualisez et gérez l'inventaire de tous les prestataires
| SKU | Produit | Prestataire | Catégorie | Prix | Stock | Seuil alerte | Statut | Dernière MAJ | Actions |
|---|---|---|---|---|---|---|---|---|---|
{{ $item->sku ?? 'SKU-' . rand(10000, 99999) }} |
|
{{ $item->prestataire->user->name ?? 'Prestataire' }} | {{ $item->category ?? 'Équipement' }} | {{ number_format($item->price ?? rand(50, 500), 2) }} € | {{ $item->stock ?? rand(0, 100) }} | {{ $item->alert_threshold ?? 10 }} | @php $stock = $item->stock ?? rand(0, 100); $threshold = $item->alert_threshold ?? 10; if ($stock == 0) { $statusClass = 'danger'; $statusLabel = 'Rupture'; } elseif ($stock <= $threshold) { $statusClass = 'warning'; $statusLabel = 'Stock faible'; } else { $statusClass = 'success'; $statusLabel = 'En stock'; } @endphp {{ $statusLabel }} | {{ $item->updated_at ? $item->updated_at->format('d/m/Y H:i') : now()->format('d/m/Y H:i') }} |
|
|
Aucun article en inventaire |
|||||||||