Image saved in storage, but not in public
Image::make('photo')->disk('public'),
have you set up php artisan storage:link ?
Yes, but storage:link does not work normally on Homestead. Probably that is a problem, but I don't have a solution.
Try this one
# config/filesystems.php
'custom' => [
'root' => public_path('images'),
'url' => env('APP_URL').'/images',
],
then use
Image::make('photo')->disk('custom'),
Please or to participate in this conversation.