seems like you have a class not imported for use "use Storage;" should fix the problem or just add a "/" becore your Storage::class
I suggest you to update following code in config/filesystems.php, located in the config folder. In this file, you can specify the locations for your file storage.
return [
'default' => 'local',
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
],
more information related to storage visit this article :
https://www.cloudways.com/blog/laravel-multiple-files-images-upload/
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community