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

15 lines
282 B
PHP

<?php
namespace App\Model\helpdesk\Notification;
use Illuminate\Database\Eloquent\Model;
class Notification extends Model
{
protected $table = 'notifications';
protected $fillable = [
'model_id', 'userid_created', 'type_id',
];
}