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

15 lines
268 B
PHP

<?php
namespace App\Model\helpdesk\Ratings;
use App\BaseModel;
class RatingRef extends BaseModel
{
protected $table = 'rating_ref';
protected $fillable = [
'rating_id', 'ticket_id', 'thread_id', 'rating_value',
];
}