Impossible to create the root directory

0

I am developing a CRUD, in this same I need to store the img of the users but laravel throws me this error:

  

Impossible to create the root directory

'local' => [
            'driver' => 'local',
            'root' => storage_path('app'),
        ],

public function setImageAdministratorAttribute($imageAdministrator) {
        $name = Carbon::now()->second . $imageAdministrator;
        $this->attributes['imageAdministrator'] = $name;        
        \Storage::disk('local')->put($name, \File::get($imageAdministrator));

    }
    
asked by Alejnadro 06.04.2018 в 23:52
source

0 answers