@extends('layouts.app') @section('title', 'Extras') @section('content')
Services et produits additionnels.
| Nom | Stock mode | Stock actuel | Alerte | Statut | Actions |
|---|---|---|---|---|---|
| {{ $extra->name }} | @php $modeColors = ['unlimited'=>'background:#EFF6FF;color:#1A4A6B;','consumable'=>'background:#FFFBEB;color:#92400E;','rentable'=>'background:#F5F3FF;color:#6D28D9;']; @endphp {{ ucfirst($extra->stock_mode) }} | @if($extra->stock_mode !== 'unlimited') @if($extra->stock_alert_threshold && $extra->stock_quantity <= $extra->stock_alert_threshold) ⚠️ {{ $extra->stock_quantity }} @else {{ $extra->stock_quantity ?? '—' }} @endif @else ∞ @endif | {{ $extra->stock_alert_threshold ?? '—' }} | {{ $extra->is_enabled ? '✅ Actif' : '❌ Inactif' }} | Stock Modifier |
| Aucun extra. Créer le premier | |||||