@extends($_ENV['admin-url'].'.layouts.main') @section('title') Inscriptions @stop @section('content')

Inscriptions

@include('includes.notification') @if(!Registration::count())

Aucune inscription pour le moment.

@else
@foreach(Registration::all() as $r) @endforeach
# Nom Prénom Email Ville Nom second participant Prénom second participant Commentaire
{{ $r->id }} {{ $r->surname }} {{ $r->firstname }} {{ $r->email }} {{ $r->city }} {{ $r->surname_second }} {{ $r->firstname_second }} {{ $r->comment }}
@endif @stop @section('scripts') @parent @stop