skip to Main Content

I am using laravel 8.1 version unable to find this error:

Failed to load resource: net::ERR_CONNECTION_CLOSED all.min.css:1
Failed to load resource: net::ERR_CONNECTION_CLOSED One more thing:
I’m also not track where $activeTemplateTrue is initialized, Your help
highly appreciate
href="{{asset($activeTemplateTrue.’frontend/css/lib/bootstrap.min.css’)}}

I don’t know the reason.

2

Answers


  1. Try to use the @dd directive of blade before the line containing {{ asset($activeTemplateTrue . 'frontend/css/lib/bootstrap.min.css') }} to show the content of `$activeTemplateTrue

    I think the $activeTemplateTrue variable reference to directory prefix, but I didn’t understand the "True" suffix of $activeTemplate. You need to check $activeTemplateTrue content.

    If your project uses barryvdh/laravel-debugbar package, check route tab, and you can know the controller who renders the current view and see parameters shared in controller method, also you can see parameters shared to the current view in views tab.

    barryvdh/laravel-debugbar on route tabs with highlighted controller

    Login or Signup to reply.
  2. I am getting the same thing using angular as my front end and .net api as my backend running in localhost. Nothing has changed. It worked a couple of weeks ago. Now even code deployed a few weeks ago and tested successfully locally. Now it doesn’t work. WTF? Anyone know why?

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search