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