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

15 lines
269 B
PHP

<?php
namespace App\Model\helpdesk\Ratings;
use App\BaseModel;
class Rating extends BaseModel
{
protected $table = 'ratings';
protected $fillable = [
'name', 'display_order', 'allow_modification', 'rating_scale', 'rating_area', 'restrict',
];
}