Mike Mavlian
Mike Mavlian

Reputation: 33

Problem with accessing image folder in Laravel

How can i access public folder image? I imported a folder from the internet and it is not letting me implement the codes. I am not seeing the folder images, what is the mistake?

Upvotes: 3

Views: 29

Answers (1)

Harout
Harout

Reputation: 174

You can access the public folder imported in your laravel by using:

asset() method in your blade, for example

<img src="{{ asset('img.jpg') }}" alt="">

Upvotes: 2

Related Questions