@extends('layouts.app') @section('content')
Logo IUL @php $styles = [ 'success' => 'text-green-600', 'error' => 'text-red-600', 'info' => 'text-blue-600', ]; $titleClass = $styles[$type ?? 'info'] ?? 'text-blue-600'; @endphp

{{ $title ?? 'Aggiornamento' }}

{{ $message }}

@isset($notula)

Anno di riferimento: {{ $notula->reference_year }}

@if ($notula->declared_amount !== null)

Importo dichiarato: € {{ number_format((float) $notula->declared_amount, 2, ',', '.') }}

@endif
@endisset
@endsection