I have a working Corcel/Laravel integration that works fine to process Wordpress posts. But using Corcel means that you miss out on the functionalities of the Wordpress environment e.g using contents and shortcodes from plugins.
But I am worried about including Wordpress in Laravel for performance reasons because each of the Laravel and Wordpress are quite huge applications with hundreds of processes to display a single page.
I feel like running the two together may become impractical as an application grows due too many resources on a simple regular hosting server.
Is it really overkill on a regular hosting server to run all the process in Laravel and also all in Wordpress just to serve a single page?
Is there a recommended execution time for serving a page and how can I check the execution time properly in PHP?