Files
faveo/app/Model/helpdesk/NotificationOld/UserNotification.php
Manish Verma 2d8e640e9b Updates
2016-12-13 18:18:25 +05:30

15 lines
273 B
PHP

<?php
namespace App\Model\helpdesk\Notification;
use App\BaseModel;
class UserNotification extends BaseModel
{
protected $table = 'user_notification';
protected $fillable = [
'notification_id', 'user_id', 'is_read',
];
}