Breadcrumb->render([ [ 'title' => 'Home', 'icon' => 'fa fa-home', 'url' => '/', ], [ 'title' => __('Configurazioni'), 'icon' => 'fa fa-wrench', ], [ 'title' => __('Lista {0}', $actor->hasValue('organisation') ? __('Organizzazioni') : __('Utenti')), 'icon' => 'fa fa-list', 'url' => ['controller' => $actor->hasValue('organisation') ? 'organisations' : 'users', 'action' => 'index'], ], [ 'title' => __('Dettaglio {0}', $actor->hasValue('organisation') ? __('Organizzazione') : __('Utente')), 'icon' => 'fa fa-info', 'url' => ['controller' => $actor->hasValue('organisation') ? 'organisations' : 'users', 'action' => 'view', $actor->organisation->id ?? $actor->user->id], ], [ 'title' => __('Gestione recapiti'), 'icon' => 'fa fa-phone', 'url' => ['controller' => 'deliveries', 'action' => 'index', $actor->id], ], [ 'title' => __('Aggiungi PEC'), 'icon' => 'fa fa-plus', ], ]); ?>

actor_type->description, $actor->description) ?>

Form->create($pec, ['role' => 'form']); ?>
Form->control('value', ['label' => __('PEC')]); echo $this->Form->control('pec_description_id', ['label' => __('Descrizione'), 'options' => $pecDescriptions, 'empty' => false]); echo $this->Form->control('enable_notifications', ['label' => __('Ricevi notifiche a questo recapito')]); ?>
Form->end(); ?>