image folder issue
hello,
Every time when upload a image they create separate folder like ('thumbnails') in storage directory not under public folder in storage directory
like
storage
app
public
thumbnails
like thumbnails folder should be under in public root like
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
],
this is my post controller
$attributes['thumbnail'] = request()->file('thumbnail')->store('thumbnails');
Please or to participate in this conversation.