When we do something like this:
Storage::disk(\'local\')->put(\'file.txt\', \'Contents\');
How do you make a link to that file in a view
Scenario--(working from a fresh Laravel 5.6 project install for reference): With the existing default paths being /public and /storage/app/public and you want to physically store your logo.png image in the /storage folder and render it on your Welcome page, the process would go something like this:
php artisan storage:linkIn your project's welcome.blade.php under /resources/views paste the following code over the existing code:
Save and open your project in your browser and you should see the logo image.
Having said all of that, later on you need a pdf folder to store uploaded pdf files. Easy, just create a new folder in /storage/app/public called /pdf and automatically the shortcut will appear in the /public folder. It is a once and "for all" solution.