@extends('backoffice.layout.master') @section('setSectionTitle', __('Gestione Enti Formativi')) @section('setSectionDescription', __('Visualizza e gestisci tutti gli enti formativi della piattaforma')) @section('setContent')
| {{ __('Denominazione') }} | {{ __('P.IVA') }} | {{ __('Email') }} | {{ __('Sede Legale') }} | {{ __('Stato') }} | {{ __('Data Registrazione') }} | {{ __('Azioni') }} |
|---|---|---|---|---|---|---|
| {{ $body->name }} | {{ $body->vat_number ?? '-' }} | {{ $body->email ?? '-' }} | @if($body->refAddress) {{ $body->refAddress->city ?? '' }} @if($body->refAddress->refLocationCountry) ({{ $body->refAddress->refLocationCountry->name }}) @endif @else - @endif | @if($body->approved_at) {{ __('Approvato') }} @else {{ __('In Attesa') }} @endif | {{ $body->created_at->format('d/m/Y H:i') }} | {{ __('Dettaglio') }} |