Update
This commit is contained in:
@@ -11,21 +11,19 @@
|
||||
|
||||
/**
|
||||
* Class Plan
|
||||
*
|
||||
*
|
||||
* @property int $id
|
||||
* @property string $name
|
||||
* @property string $tier
|
||||
* @property Carbon|null $created_at
|
||||
* @property Carbon|null $updated_at
|
||||
*
|
||||
* @package App\Models
|
||||
*/
|
||||
class Plan extends Model
|
||||
{
|
||||
protected $table = 'plans';
|
||||
protected $table = 'plans';
|
||||
|
||||
protected $fillable = [
|
||||
'name',
|
||||
'tier'
|
||||
];
|
||||
protected $fillable = [
|
||||
'name',
|
||||
'tier',
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user