How to send a query to the database after the page has been rendered?
I would like to ask you, does Laravel have a pre-installed ability to load data after page rendering?
I'll try to explain with an example:
For example, on the product catalog page I have:
available product filters
goods
Now I receive all the necessary data (products + attributes) in the model and are transferred to the view. The content is rendered only after all values have been received.
Is it possible to make the received products appear on the site immediately, and the available filters only after they have been fully loaded?