@extends('layouts.adminlte') @section('title', 'Dashboard') @section('page_title', 'Dashboard') @section('content')

{{ $stats['individui'] }}

Individui

Visualizza

{{ $stats['gruppi'] }}

Gruppi

Visualizza

{{ $stats['notifiche'] }}

Notifiche

Visualizza

Ultime Notifiche

@if($notifiche->count() > 0)
    @foreach($notifiche as $notifica)
  • {{ $notifica->titolo }} {{ $notifica->created_at->diffForHumans() }}
  • @endforeach
@else

Nessuna notifica

@endif

Benvenuto

@php $appName = \App\Models\AppSetting::getAppName() ?? 'Glastree'; $orgName = \App\Models\AppSetting::getOrgName(); $welcome = \App\Models\AppSetting::getDashboardWelcome(); @endphp @if($welcome)

{!! nl2br(e($welcome)) !!}

@else

Benvenuto in {{ e($appName) }}{{ $orgName ? ', ' . e($orgName) : '' }}.

@endif

Dal menu laterale puoi navigare tra le sezioni:

  • Individui: Gestione delle persone registrate
  • Gruppi: Gestione della struttura organizzativa
  • Documenti: Archivio documentale
  • Eventi: Calendario eventi
  • Mailing: Comunicazioni email
@if(Auth::user()->is_admin)
Amministratore: Hai accesso completo al sistema.
@endif
@endsection