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