If you upload the files into storage folder in laravel then you need run storage command if you want to display it on your website or you want to access it publicly so following is the code to run the command.
php artisan storage:link
You can create a route as well to run this command into your project.
Route::get('create-link', function() { Artisan::call('storage:link'); });
Ravindra is a passionate full stack developer and dedicated blogger with a flair for crafting user-friendly web applications and insightful articles. With expertise spanning front-end and back-end technologies, Ravindra brings ideas to life through innovative coding solutions.