📜  laravel 8 $request->intersect 不工作 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:53.490000             🧑  作者: Mango

代码示例1
//Instead of this...
$request->intersect(['name','description']);

//Try this...
$request->only('name','description');