@extends('layouts.app') @section('content')

Analytique inventaire

@if(isset($stats))

Total articles

{{ $stats['total_items'] ?? 0 }}

Valeur totale

{{ number_format($stats['total_value'] ?? 0, 2) }} €

Articles en rupture

{{ $stats['low_stock_count'] ?? 0 }}

Répartition par catégorie

@if(!empty($stats['items_by_category'])) @else

Aucune donnée.

@endif
@else

Aucune donnée disponible.

@endif
@endsection