Bugfixes & Model for participants

This commit is contained in:
2026-02-17 21:58:55 +01:00
parent fcf41c5d13
commit b1c333648a
14 changed files with 334 additions and 56 deletions

View 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',
];
}