i am beginner of laravel i have uploaded the images inside the storge folder app/public/images successfully but it not shown up when i view the webpages.i don’t know why. i already done the trouble shooting stuffs.
php artisan storage:link
what is the code i tried i attached below.
form
@foreach ( $products as $key => $product )
<tr>
<td scope="col">
<img src="{{ asset('storage/' . $product->photo) }}" width='150' height='150' class="img img-responsive" />
</td>
</tr>
Controller
$products = $this->products->all();
$categories = Category::pluck('name', 'id');
return view('pages.product.index', compact('products', 'categories'));
4