get image from storage folder in laravel code example
Example 1: access storage from the view laravel 6
<img src="{{ asset('storage/images/'.$article->image) }}" alt="" title=""></a>
Example 2: laravel storage get file path
use Illuminate\Support\Facades\Storage;
$path = Storage::path('file.jpg');