Laravel 8 $ request-> berpotongan tidak berfungsi

//Instead of this...
$request->intersect(['name','description']);

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