25 lines
781 B
PHP
25 lines
781 B
PHP
@php use App\Models\Audition;
|
|
use App\Models\Entry;
|
|
use App\Models\School;
|
|
use App\Models\SchoolEmailDomain;
|
|
use App\Models\ScoreSheet;
|
|
use App\Models\ScoringGuide;
|
|
use App\Models\User;use App\Services\AuditionCacheService;use App\Settings;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Facades\Session;
|
|
@endphp
|
|
@inject('tabservice','App\Services\TabulationService');
|
|
<x-layout.app>
|
|
<x-slot:page_title>Test Page</x-slot:page_title>
|
|
|
|
@php(dd($tabservice->entryScoreSheetsAreValid(Entry::find(1102))))
|
|
|
|
@foreach($auditions as $audition)
|
|
{{ $audition->name }} has {{ $audition->entries_count }} entries. {{ $audition->scored_entries_count }} are
|
|
fully scored.<br>
|
|
@endforeach
|
|
|
|
|
|
</x-layout.app>
|