@extends('admin.layout.master') @section('title', 'Dashboard') @section('content')

Event Manager

    @forelse($category as $ct)
  • {{ $ct->categoryname }}
  • @empty
  • No categories found for this event.
  • @endforelse
    @forelse($apparatus as $ct)
  • {{ $ct->aname }}
  • @empty
  • No Apparatus found for this event.
  • @endforelse
@forelse($judge as $ct)
  • {{ $ct->coach_name }}
  • @empty
  • {{ $existsInCoachEvent ? 'No Judge found for this event.' : 'Not Configured' }}
  • @endforelse
    @endsection