At the moment, I’m engaged in a project that employs Laravel’s Filemant, and I’ve noticed significant slowness when navigating between pages or submitting forms. The delay can range from 10 to 18 seconds.
My development environment is :
Wampserver Windows 10, an Intel Core i7 7th Gen CPU, 16 GB of RAM, and an SSD drive.
The screenshot shows the problem I’m having
While viewing tutorials on Laravel Filament, I haven’t observed them encountering this issue.
I did not understand the problem and did not find the solution. Please help.
2
Answers
The use of external icons blade and the Windows environment is also one of the reasons why the Filament is very slow.
php artisan icons:cache
solves the issue.A few things might be there, but you might have issues with "debugbar". It does not play very nicely with Filament and adds much rendering time to your page.
Try to:
php artisan vendor:publish --provider="BarryvdhDebugbarServiceProvider"
config/debugbar.php
views
value fromtrue
tofalse
Reload the page and see if that helped.
A few posts are already in the community with this specific problem and performance issue. It can affect the speed up to tens of seconds for no apparent reason.