|
{{ $manuale->titolo }}
@if($manuale->descrizione)
{{ \Illuminate\Support\Str::limit($manuale->descrizione, 90) }}
@endif
|
@forelse($manuale->permessi as $permesso)
{{ $permesso->name }}
@empty
Visibile a tutti (auth)
@endforelse
|
@if($manuale->is_attivo)
Attivo
@else
Disattivo
@endif
|
{{ $manuale->utenteCaricamento?->name ?? '-' }} |
|
@empty