Files
faveo/app/Model/helpdesk/Ratings/RatingRef.php
2020-03-17 05:14:38 +00:00

15 lines
240 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',
];
}