Without any example code it's hard to understand and help you.
The Form::open is from something called the FormHelper, it was removed from Laravel many years back, it has however sadly lived on in the Laravel Collective. It should not be used.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I've figured out what part in the code makes the page load 75MB: the developer before used Laravel blade as frontend and he loads the data into table. Now the data alone is only 2MB.
But what he did, because he wanted the ability to edit every cell (and then update accordingly in the db) was to open a form before the table using Form::open, and inside each cell he outputs the data inside input tags. So I think that's what makes it so bloated: it's a gigantic form with hundreds of inputs that the user can edit, and then when you save, it just send everything to the backend, hundreds of inputs.
What would be a better way to be able to update individual cells? I was thinking about JS + AJAX, but maybe there's a way to do it purely with blade?
Also, where did the Form::open come from? The project uses Laravel 6 and I only found it in the docs of Laravel 4.. So is it another mistake?
One more thing: I'm still not sure what exactly makes the 2MB into 75MB: Is it the fact that many input tags are used, the usage of Form::open, or something else?
Please or to participate in this conversation.