The following code is a test to access the database of my server and I would like to know how to implement an image using the url that is in the tables of my database, I know that I must use the asset method that allows me to access the images found in the asset folder but I do not know how to concatenate it properly
<h1>Listado de Libros</h1>
@foreach($producto as $producto)
<h3>{{ $producto->titulo }}</h3>
<img src="{{asset(img/$producto->imagen)}}" alt="productoimagen" width="250">
@endforeach