good I am currently doing an application of a library in laravel in which I use a foreach to show the values of the books table in the following way:
@foreach($libros as $libro)
<img src="libreria/app/{{$libro->path}}" alt="" />
</div>
<a class="span" href="ver">
<i>{{$libro->titulo}}</i></a>
<p class="info">IDIOMA: {{$libro->idioma}}</p>
<p class="info">PAGINAS: {{$libro->paginas}}</p>
<p class="info">CATEGORIA: {{$libro->categoria}}</p>
<p class="info">VOLUMENES DISPONIBLES: {{$libro->cantidad}}</p>
</div>
My question is how can I make an individual view of each column that I send to the "see" method to the one that is sending each column?