Are table actions slow?

I am migrating a website from Nova to Filament and I was just comparing the page load times. I understand Nova is Vue and uses ajax(inertia), but a pure livewire table is very quick.

I have a table with 25 rows and 1 column, and when I add view, edit and delete iconButtons it slows by 350ms... I have run php artisan icons:cache with no difference.

Not sure why it's slowing down so much, is blade rendering just slow with this many views?
Solution
Telescope was the main cause. Have it enabled on dev, and disabling it halved the response times. Likely because telescope also watched blade views. Just like debugbar...
Was this page helpful?