Files
faveo/app/Model/helpdesk/Notification/UserNotification.php
Sujit Prasad 5327b0c0da update 1.0.7
2016-04-19 19:19:42 +05:30

15 lines
290 B
PHP

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