@extends('layouts.app')
@section('title', 'Mon Profil')
@section('content')
{{-- Flash Messages --}}
@if(session('success'))
@endif
@if(session('error'))
@endif
{{-- Stats --}}
{{ $totalProduits }}
Produits total
{{ $totalEvenements }}
Événements
{{ $produitsCeMois }}
Scans ce mois
{{ $alertesDLC }}
Alertes DLC
{{-- Grille 2 colonnes --}}
{{-- Informations du compte --}}
{{-- Mot de passe --}}
{{-- Photo de profil --}}
{{-- Infos lecture seule --}}
- Membre depuis
- {{ auth()->user()->created_at->format('d/m/Y') }}
- Dernière mise à jour
- {{ auth()->user()->updated_at->diffForHumans() }}
- Alertes DLC
-
@if($alertesDLC > 0)
{{ $alertesDLC }} produit(s) à surveiller
@else
Aucune alerte
@endif
{{-- Notifications push --}}
Recevez un rappel pour faire vos relevés de température.
Sur iPhone : installez d'abord l'app via Safari → Partager → Sur l'écran d'accueil
@endsection
@section('styles')
@endsection