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',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user