15 lines
237 B
PHP
15 lines
237 B
PHP
<?php
|
|
|
|
namespace App\Model\helpdesk\Notification;
|
|
|
|
use App\BaseModel;
|
|
|
|
class Notification extends BaseModel
|
|
{
|
|
protected $table = 'notifications';
|
|
protected $fillable = [
|
|
|
|
'model_id', 'userid_created', 'type_id',
|
|
];
|
|
}
|