cms-token/@core/app/ServiceCategory.php

12 lines
231 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ServiceCategory extends Model
{
protected $table = 'service_categories';
protected $fillable = ['name','status','lang','icon_type','icon','img_icon'];
}