Driver [] is not supported. - Laravel 5.3 Driver [] is not supported. - Laravel 5.3 laravel laravel

Driver [] is not supported. - Laravel 5.3


Here you defined the $disk as public_folder:

public function setImageAttribute($value){    $attribute_name = "image";    $disk = "public_folder";    $destination_path = "uploads/images";

But in your filesystem.php you don't have the public_folder disk

You need to create a new "public_folder" disk

'disks' => [    'public_folder' => [        'driver' => 'local',        'root' => public_path('uploads'),    ],

or rename your $disk variable to another disk:

public function setImageAttribute($value){    $attribute_name = "image";    //Uploads disk for example    $disk = "uploads";