@extends('layouts.admin') @section('title', 'Belt Tests Management') @section('content')

Belt Tests Management

Belt Tests
@if($beltTests->isEmpty())
No Belt Tests Found

Create your first belt test to get started with managing student assessments.

Create Belt Test
@else
@foreach($beltTests as $test) @endforeach
Test Name Belt Level Test Date Status Participants Actions
{{ $test->name ?? 'Sample Belt Test' }}

{{ $test->description ?? 'Test description' }}

{{ $test->belt_level ?? 'Yellow Belt' }} {{ $test->test_date ?? now()->format('M d, Y') }} {{ $test->status ?? 'Upcoming' }} {{ $test->participants_count ?? '0' }} students
@endif
@endsection