In my Laravel application, all the CSS and JQ libraries are working fine.

But as soon as I use routes with parameters it breaks CSS, JQ, and fontawesome.

Then I managed to fix the CSS issue by using Assets URLs as below.
{{ asset('css/admin.min.css') }}
But Jquery is not working yet. How can I fix this issue?
Add '/' before path like this:
{{ asset('/css/admin.min.css') }}