You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
396 B
PHP

<?php
namespace App\Models;
class CustomerLevel extends Model
{
const BASIC = 'basic';
const SILVER = 'silver';
const GOLD = 'gold';
const PLATINUM = 'platinum';
const MUST_VERIFIED = [self::GOLD, self::PLATINUM];
protected $fillable = [
'name',
'description',
'key',
'min_amount',
'max_amount',
'max_loan',
];
}