'int', 'enabled' => 'bool', 'is_top' => 'bool', '_lft' => 'int', '_rgt' => 'int', 'parent_id' => 'int', ]; protected $fillable = [ 'type', 'country_locale_id', 'name', 'short_name', 'slug', 'description', 'enabled', 'is_top', '_lft', '_rgt', 'parent_id', ]; public function country_locale() { return $this->belongsTo(CountryLocale::class); } }