@extends('layouts.app') @section('content')
Recevez des notifications automatiques sur WhatsApp
Veuillez entrer votre numéro WhatsApp et activer les notifications pour recevoir des alertes automatiques.
| # | Produit | SKU | Prix | Stock | Niveau | Statut | Actions |
|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $product->name ?? 'N/A' }}
@if($product->description)
{{ Str::limit($product->description, 50) }}
@endif
|
@if($product->sku)
{{ $product->sku }}
@else
-
@endif
|
{{ number_format($product->price ?? 0, 2) }}
MAD
|
{{ $product->current_stock ?? 0 }}
{{ $product->unit ?? 'pièce' }}
|
{{ $product->getStockPercentage() ?? 0 }}%
|
@if($product->isOutOfStock()) ❌ Rupture @elseif($product->isLowStock()) ⚠️ Bas @else ✅ Normal @endif |
@if(Auth::user()->whatsapp_phone && Auth::user()->whatsapp_alerts_enabled)
@endif
|