找到文件
vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php(207)
修改 isGuarded
方法:
public function isGuarded($key)
{
if (empty($this->getGuarded())) {
return false;
}
return $this->getGuarded() == ['*'] ||
! empty(preg_grep('/^'.str_replace('/','\/',preg_quote($key)).'$$
! $this->isGuardableColumn($key);
}
就是 把preg_quote($key) 换成 str_replace(‘/’,‘\/’,preg_quote($key))
标签:Crater laravel