Creation and editing of events
This commit is contained in:
18
app/Enumerations/ParticipationType.php
Normal file
18
app/Enumerations/ParticipationType.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enumerations;
|
||||
|
||||
use App\Scopes\CommonModel;
|
||||
|
||||
class ParticipationType extends CommonModel {
|
||||
public const PARTICIPATION_TYPE_PARTICIPANT = 'participant';
|
||||
public const PARTICIPATION_TYPE_TEAM = 'team';
|
||||
public const PARTICIPATION_TYPE_VOLUNTEER = 'volunteer';
|
||||
public const PARTICIPATION_TYPE_OTHER = 'other';
|
||||
|
||||
|
||||
protected $fillable = [
|
||||
'slug',
|
||||
'name',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user