My uploaded image doesn't save in the storage file – Laravel
I've followed the steps of Laracasts, but it's not working. When I submit the form it returns: Done: storage/thumbnails/k0TF3NW6WvWWjHuEtZ0OW7TTRQbfSB6lvD1GJls3.png But I couldn't find it anywhere. My storage/thumbnails is empty. My Controller: $path = request()->file('thumbnail')->store('storage/thumbnails'); return 'Done: ' . $path; My…