Hi i dont know how put img with assets. I have this
{{asset('Articulos/{{$Articulo->path}}')}}
but i have error syntax error, unexpected '}'
can you help me?
The correct syntax is:
{{ asset('Articulos/' . $Articulo->path) }}