skip to Main Content

I use

XAMPP version: 8.2.4

Control Panel version: 3.3.0

Laravel: 10.33.0

PHP: 8.2.11

Everything should work as fast as lightning, but im waiting 32 seconds to load a page. First image shows loading same page with Larevel and localhost

enter image description here

As we can see from the image most of the time im speding waiting from server response. This page is clear html js css in blade.php there is NO database query on this page.
i tried to load same page without Laravel and localhost. second image shows loading same page without localhost

enter image description here

412 ms to load the same page in a different folder without Laravel and localhost.
Any solution to this problem?

to start server in laravel I use these commands

php artisan serve

and

npm run dev

laravel debugbar

enter image description here

2

Answers


  1. Chosen as BEST ANSWER

    I had a re-install of Xampp, Composer and a fresh install of Laravel and the results were stunning

    enter image description here

    and

    enter image description here

    Laravel v10.39.0 (PHP v8.2.12) (XAMPP v8.2.12)


  2. Use laravel debugbar it will give your more details/data u can identify the problem with

    Here u go :

    https://github.com/barryvdh/laravel-debugbar

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