Make your Laravel application much faster using Frankenphp

Laravel with Modern PHP App Server — Part 2

Balaji Dharma
4 min readNov 28, 2024
Photo by Jean Gerber on Unsplash

In this part, we are going to install the configure Frankenphp to the Laravel application. I installed the Laravel Basic Admin Panel in local.

I have attached the screenshot for the current Laravel application Booting and Application timing with the help of the Laravel debugbar package.

First Request

Consecutive requests

What is Booting and Application timing?

The Booting time is when the request starts until the Laravel debugbar is booted in the booted() section of the service providers. So, Booting the time of Laravel’s framework initialize, server provider initialize, and Debugbar Service Provider Booting.

Application time is when the framework receives and parses the HTTP request with Routing & Controller Execution and view rendering.

--

--

No responses yet