skip to Main Content

I have a Laravel application that was not developed by me. There is some weird bar at the bottom of each page, it is some type of Laravel debugger tool.

I believe it is stored in storage/debugger. Is there a safe way I can go about checking to see if this is actually it and if so can I delete this type of tool without it affecting the application? Does anybody know what this thing is if so any advice on how to remove this safely would be greatly appreciated.

Thank you.

I had searched online and I had seen most of solution are related to.env file. But I am unable to find.env file in code.

2

Answers


  1. Chosen as BEST ANSWER

    [![ ][1]][1]

    here it is sir. I had tried several times. And it's not solved. [1]: https://phpout.com/wp-content/uploads/2024/01/afQ77.jpg


    1. Open .env file of your laravel project, It is normally located at the root of laravel project.
    2. Change APP_DEBUG to false.
    3. If you are not able to file .env, Please add your project file structure in your question.
    4. To get file structure open the laravel root folder and run this command tree /F.

    Note : tree /F Command only works in windows.

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