With the release of Laravel 11.14.0, We have an update in the server logging.

Initially, if the request time was less than 1 second, it showed 0s, which is inaccurate. Thanks to Seth Phat, we get accurate time in ms if the request takes less than a second.

Before

Before the udpate

After

After

Here is the link to PR

Support for Markdown extensions to the Stringable class

In the Laravel v11.13.0 Release, Tony Lea made an update in Str::markdown method. This Update is on the top of that update. Contributed by Luke Downing now extensions can also be used in str method.

$html = str('# My Heading')->markdown(extensions: [new HeadingPermalinksExtension()]);

Here is the link to PR

You can see a complete list of release points here.

Get more hidden gems of laravel 11