@extends('adminlte::page') @section('title', 'Tolly Fest Registrations') @section('content_header') @stop @section('content')

Tolly Fest Registrations

List Of Registrations

Total No. of Registrations: {{ $registrations->total() }}

@if(isset($registrations)) @foreach($registrations as $registration) @endforeach @endif
ID Fest-Year Applied Date Discipline Actions
{{$registration->id}} Tolly Fest - {{ $registration->year }} {{ optional($registration->created_at)->format('Y-m-d') }} @if($registration->details->count())
    @foreach($registration->details as $d)
  • {{ $d->discipline->discipline_name ?? '' }} @if($d->category) - {{ $d->category->category_name }} @endif @if($d->rating) ({{ $d->rating }}⭐) @endif
  • @endforeach
@else No discipline selected @endif
ID Fest-Year Applied Date Discipline Actions
@stop @section('js') @include('admin.tolly-fest-discipline.scripts.index') @stop