Creation and editing of events
This commit is contained in:
15
app/Enumerations/ParticipationFeeType.php
Normal file
15
app/Enumerations/ParticipationFeeType.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enumerations;
|
||||
|
||||
use App\Scopes\CommonModel;
|
||||
|
||||
class ParticipationFeeType extends CommonModel {
|
||||
public const PARTICIPATION_FEE_TYPE_FIXED = 'fixed';
|
||||
public const PARTICIPATION_FEE_TYPE_SOLIDARITY = 'solidarity';
|
||||
|
||||
protected $fillable = [
|
||||
'slug',
|
||||
'name',
|
||||
];
|
||||
}
|
||||
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