laravel make storage folder public code example
Example 1: access storage from the view laravel 6
<img src="{{ asset('storage/images/'.$article->image) }}" alt="" title=""></a>
Example 2: laravel link storage to public
php artisan storage:link
<img src="{{ asset('storage/images/'.$article->image) }}" alt="" title=""></a>
php artisan storage:link