This is very easy.
In config/filesystems.php,
// ...
// Change 'local' path to this:
'local' => [
'driver' => 'local',
'root' => public_path(),
],
// ...And use it as
$path = $request->file('image')->store('images')The file will get stored in public/images/<something>.