@extends('layouts.app') @section('title', 'Backoffice — Inscriptions') @section('content')
@include('admin.partials.breadcrumbs', ['items' => [ ['label' => 'Inscriptions'], ]])
Backoffice

Suivi des inscriptions.

@if(session('status'))
{{ session('status') }}
@endif
@forelse($inscriptions as $inscription) @empty @endforelse
ProspectFormationSessionFinancementStatut
{{ $inscription->inscrit?->prenom }} {{ $inscription->inscrit?->nom }}
{{ $inscription->inscrit?->email }} · {{ $inscription->inscrit?->telephone }}
{{ $inscription->session?->formation?->titre }} @if($inscription->session?->module)
Module : {{ $inscription->session->module->titre }} @endif
@if($inscription->session) {{ $inscription->session->date_debut->format('d/m/Y') }} → {{ $inscription->session->date_fin->format('d/m/Y') }} @else À confirmer @endif {{ $inscription->financement?->libelle ?? 'À préciser' }} {{ $statuts[$inscription->statut] ?? $inscription->statut }}
@csrf @method('PUT')
@csrf
Aucune inscription pour le moment.
{{ $inscriptions->links() }}
Liste d'attente

Demandes de prochaine session.

@forelse($demandes as $demande) @empty @endforelse
ProspectFormationPérimètreFinancementStatut
{{ $demande->inscrit?->prenom }} {{ $demande->inscrit?->nom }}
{{ $demande->inscrit?->email }} · {{ $demande->inscrit?->telephone }}
{{ $demande->formation?->titre }} @if($demande->module) Module : {{ $demande->module->titre }}
{{ $demande->module->duree_heures ? $demande->module->duree_heures . ' h' : 'Durée à confirmer' }} @else Formation complète
{{ $demande->formation?->duree_libelle ?: ($demande->formation?->duree_heures ? $demande->formation->duree_heures . ' h' : 'Durée à confirmer') }} @endif
{{ $demande->financement?->libelle ?? 'À préciser' }} {{ $statutsDemandes[$demande->statut] ?? $demande->statut }}
@csrf @method('PUT')
Aucune demande de prochaine session pour le moment.
{{ $demandes->links() }}
@endsection