16 lines
308 B
PHP
16 lines
308 B
PHP
<?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',
|
|
];
|
|
}
|