laravel image path

Solutions on MaxInterview for laravel image path by the best coders in the world

showing results for - "laravel image path"
Joshua
13 Mar 2016
1
2You have to put all your assets in app/public folder, and to access them from your views you can use asset() helper method.
3
4Ex. you can retrieve assets/images/image.png in your view as following:
5
6<img src="{{asset('assets/images/image.png')}}">
7
8this answer is from stack-overflow
9by->Walid Ammar