@extends('backoffice.layout.master') @section('setSectionTitle', __('Gestione Enti Formativi')) @section('setSectionDescription', __('Visualizza e gestisci tutti gli enti formativi della piattaforma')) @section('setContent')
{{ __('Crea Nuovo Ente Formativo') }}
@csrf
{{ __('Lista Enti Formativi') }}
@if($bodies->count() > 0)
@foreach($bodies as $body) @endforeach
{{ __('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') }}
@csrf @method('DELETE')
@if($bodies->hasPages())
{{ $bodies->links() }}
@endif @else
{{ __('Nessun ente formativo presente nel sistema.') }}
@endif
@endsection