I try include my css or js files to project using:
{{ URL::asset('path to css') }}
or
{!! Html::style("path to css") !!}
or similar.
But i always got link from public directory. like so: http://localhost/projectroot/public/assets/style.css
Why that happens and how can i solve this?
Seems to i should move my assets into public ?
public/assets/
. - BrokenBinary