Files
faveo/app/Model/helpdesk/Notification/Notification.php
2016-06-13 20:41:55 +05:30

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