Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

anonymousca's avatar

lumen css file does not working

index.blade.php I added below code

<link type="text/css" rel="stylesheet" href="{{url('/public/assets/app.css')}}">
0 likes
1 reply
s4muel's avatar

it probably points to wrong location, this url gives you https://example.com/public/assets/app.css and the public is not usually "shared" that way. try using this instead:

<link rel="stylesheet" type="text/css" href="{{ asset('app.css') }}">

Please or to participate in this conversation.