@extends('admin.layout') @section('content')

Tests Management

Manage and organize your tests

Create Test
Reset

Tests List

@if($tests->count() > 0)
@foreach($tests as $test) @endforeach
Title Subject Level Price Questions Status Created Actions
{{ Str::limit($test->title, 40) }}
{{ Str::limit($test->description, 50) }}
{{ $test->subject->name }}
{{ $test->competitionLevel->name }}
${{ number_format($test->price, 2) }}
{{ $test->questions()->count() }}
@csrf
{{ $test->created_at->format('M j, Y') }}
@csrf @method('DELETE')
{{ $tests->links() }}
@else

No tests found

Get started by creating a new test.

@endif
@endsection