File "LocationCategoryTranslation.php"
Full Path: /home/bettaeza/flyinsyria.com/Location/Models/LocationCategoryTranslation.php
File size: 315 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Modules\Location\Models;
use App\BaseModel;
class LocationCategoryTranslation extends BaseModel
{
protected $table = 'location_category_translations';
protected $fillable = [
'name',
'content',
];
protected $cleanFields = [
'content'
];
}