Hi, i have a question related to Laravel 4 Starter Site. I added a css file in assets/css directory. I try to access the css use <link rel="stylesheet" href="{{asset('bootstrap/css/bootstrap_readable.css')}}">
I got NotFoundHttpException when I use the css file. The css file is set to 755.
Any suggestions?
looks like you're using some blade, try:
{{ HTML::style('bootstrap/css/bootstrap_readable.css') }}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community