27 lines
734 B
PHP
27 lines
734 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Services\AuditionService;
|
|
use App\Services\TabulationService;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Session;
|
|
|
|
class TestController extends Controller
|
|
{
|
|
protected $scoringGuideCacheService;
|
|
protected $tabulationService;
|
|
|
|
public function __construct(AuditionService $scoringGuideCacheService, TabulationService $tabulationService)
|
|
{
|
|
$this->scoringGuideCacheService = $scoringGuideCacheService;
|
|
$this->tabulationService = $tabulationService;
|
|
}
|
|
|
|
public function flashTest(Request $request)
|
|
{
|
|
$auditions = $this->tabulationService->getAuditionsWithStatus();
|
|
return view('test', compact('auditions'));
|
|
}
|
|
}
|