19 lines
331 B
PHP
19 lines
331 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Study;
|
|
|
|
class HashedStudyControllerBase extends HashidControllerBase
|
|
{
|
|
protected ?Study $study = null;
|
|
|
|
protected function getStudy(): Study
|
|
{
|
|
$this->decodeKeys();
|
|
$this->study = Study::findOrFail($this->key);
|
|
|
|
return $this->study;
|
|
}
|
|
}
|