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

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