Files
faveo/app/Model/helpdesk/NotificationOld/Notification.php
2020-03-17 05:14:38 +00:00

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',
];
}