@extends('backoffice.layout.master') @section('setSectionTitle', $employersAssociation->name) @section('setSectionDescription', __('Dettaglio associazione datoriale')) @section('setContent')
| {{ __('Denominazione') }} | {{ $employersAssociation->name }} |
|---|---|
| {{ __('P.IVA') }} | {{ $employersAssociation->vat_number }} |
| {{ __('Codice Fiscale') }} | {{ $employersAssociation->fiscal_code }} |
| {{ __('Email') }} | {{ $employersAssociation->email }} |
| {{ __('PEC') }} | {{ $employersAssociation->pec ?? '-' }} |
| {{ __('Telefono') }} | {{ $employersAssociation->phone }} |
| {{ __('Rappresentante Legale') }} | {{ $employersAssociation->legal_representative }} |
| {{ __('Data Approvazione') }} | {{ $employersAssociation->approved_at->format('d/m/Y H:i') }} |
{{ $employersAssociation->refAddress->city }}, {{ $employersAssociation->refAddress->province }} {{ $employersAssociation->refAddress->postal_code }}
{{ $employersAssociation->refAddress->region }}
{{ $employersAssociation->refAddress->refLocationCountry->name_it ?? '' }}
@else{{ __('Nessun indirizzo disponibile') }}
@endif{{ __('Nessun manager associato') }}
@else| {{ __('Nome') }} | {{ __('Cognome') }} | {{ __('Ruolo') }} | {{ __('Email') }} | {{ __('Stato') }} |
|---|---|---|---|---|
| {{ $manager->first_name }} | {{ $manager->last_name }} | {{ $manager->job_title ?? '-' }} | {{ $manager->refUser->email ?? '-' }} | @if($manager->is_active) {{ __('Attivo') }} @else {{ __('Inattivo') }} @endif |
{{ __('Nessuna azienda collegata') }}
@else| {{ __('Azienda') }} | {{ __('Stato') }} | {{ __('Data Richiesta') }} | {{ __('Data Conferma') }} | {{ __('Data Approvazione') }} |
|---|---|---|---|---|
| {{ $connection->refOrganization->name }} | @if($connection->status == 'PENDING_ASSOCIATION') {{ __('In attesa conferma') }} @elseif($connection->status == 'CONFIRMED') {{ __('Confermata') }} @elseif($connection->status == 'APPROVED') {{ __('Approvata') }} @else {{ __('Rifiutata') }} @endif | {{ $connection->requested_at ? $connection->requested_at->format('d/m/Y') : '-' }} | {{ $connection->confirmed_at ? $connection->confirmed_at->format('d/m/Y') : '-' }} | {{ $connection->approved_by_company_at ? $connection->approved_by_company_at->format('d/m/Y') : '-' }} |