Files
faveo/app/Model/helpdesk/NotificationOld/Notification.php
Manish Verma 2d8e640e9b Updates
2016-12-13 18:18:25 +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',
];
}