@extends('layouts.app') @section('title', 'Analytics Inventaire') @section('content')
Statistiques et analyses de votre stock
Total articles
{{ $stats['total_items'] ?? 0 }}
Valeur de vente
{{ number_format($stats['selling_value'] ?? 0, 2) }} €
Bénéfice potentiel
{{ number_format($stats['profit'] ?? 0, 2) }} €
Marge moyenne
{{ $stats['margin'] ?? 0 }}%
{{ $stats['low_stock_count'] ?? 0 }}
articles à réapprovisionner
{{ $stats['out_of_stock_count'] ?? 0 }}
articles en rupture
Aucune donnée disponible
@endif✅ Tous vos stocks sont OK !
@endif| Article | Catégorie | Quantité | Prix | Ajouté le |
|---|---|---|---|---|
| {{ $item->name }} | {{ ucfirst($item->category ?? 'N/A') }} | {{ $item->quantity }} {{ $item->unit ?? '' }} | {{ number_format($item->selling_price ?? 0, 2) }} € | {{ $item->created_at->format('d/m/Y') }} |
Aucun article récent
@endif