diff --git a/.gitignore b/.gitignore index 46340a6..5a8b744 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,5 @@ yarn-error.log /.fleet /.idea /.vscode +/app/Http/Controllers/TestController.php +/resources/views/test.blade.php diff --git a/app/Http/Controllers/TestController.php b/app/Http/Controllers/TestController.php deleted file mode 100644 index 9a39421..0000000 --- a/app/Http/Controllers/TestController.php +++ /dev/null @@ -1,22 +0,0 @@ -rankomatic = $rankomatic; - } - - public function flashTest() - { - dd($this->rankomatic->booo()); - return view('test'); - } -} diff --git a/resources/views/test.blade.php b/resources/views/test.blade.php deleted file mode 100644 index 0eb3464..0000000 --- a/resources/views/test.blade.php +++ /dev/null @@ -1,15 +0,0 @@ -@php use App\Enums\AuditionFlags;use App\Models\Audition;use App\Models\AuditionFlag;use App\Models\Entry;use App\Models\Event;use App\Models\User; @endphp -@php @endphp -@inject('scoreservice','App\Services\ScoreService'); -@inject('auditionService','App\Services\AuditionService'); -@inject('entryService','App\Services\EntryService') -@inject('seatingService','App\Services\SeatingService') -@inject('drawService', 'App\Services\DrawService') - - Test Page - {{ $bam ?? '' }} - - @foreach(Event::first()->entries->groupBy('student_id') as $student) - Name: {{ $student[0]->student->full_name() }}
- Entry Count: {{ $student->count() }}
- @endforeach -