Bugfixes & Model for participants
This commit is contained in:
27
app/Enumerations/EfzStatus.php
Normal file
27
app/Enumerations/EfzStatus.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enumerations;
|
||||
|
||||
use App\Scopes\CommonModel;
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
|
||||
/**
|
||||
* @property string $slug
|
||||
* @property string $name
|
||||
*/
|
||||
class EfzStatus extends CommonModel
|
||||
{
|
||||
public const EFZ_STATUS_NOT_CHECKED = 'not_checked';
|
||||
public const EFZ_STATUS_NOT_REQUIRED = 'not_required';
|
||||
|
||||
public const EFZ_STATUS_CHECKED_VALID = 'checked_valid';
|
||||
public const EFZ_STATUS_CHECKED_INVALID = 'checked_invalid';
|
||||
|
||||
protected $table = 'efz_status';
|
||||
|
||||
|
||||
protected $fillable = [
|
||||
'slug',
|
||||
'name',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user