samedi 24 août 2019

how to upload image to public folder not to storage?

I want to upload images to public folder inside imgs folder so I tried adding to cofig/filesystems.php the following:

'pub' => [
            'driver' => 'local',
            'root'   => '/imgs',
            'url' => env('APP_URL').'/public',
            'visibility' => 'public',
        ] 

but now when I use $d->storeAs('products', $name.$ext, ['storage' => 'pub']); the images are saved inside storage/app/public/imgs/products not public/imgs/products

how I store them in public not in storage?



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire