Insert image into a Laravel blade template [closed]

-2

How can I insert images into my Laravel blade template? I want images on my homepage but I can not link, I created a images folder inside of public to store my images.

    
asked by anonymous 12.03.2018 / 02:16

1 answer

1

I got this way, I opened a php tag I used the asset with the following arguments listed below.

<?php asset('nome da pasta que criei'/'nome da imagem com tipo da imagem') ?>
    
12.03.2018 / 02:25