I have trouble in linking with css from public folder
I tried with like below but still got ERR_INVALID_HTTP_RESPONSE
<link rel="stylesheet" href="{{ URL::asset('css/w3.css') }}" />
<link rel="stylesheet" href="/css/w3.css" />
This command work for me..
<link rel="stylesheet" href="{{ asset('/css/w3.css') }}"/>
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community