Laravel relies on an application key to be set for encryption and other security purposes. If it's not set, you're not getting anywhere.
If you're using wire:navigate in Livewire, chances are Fathom Analytics won't pick up these events.
I recently found myself writing a test where I needed to test a macro applied to the Request object in Laravel. But I needed the user to be 'authenticated'.
How can you add your own helper functions to Laravel? It's pretty easy, and this guide will get you started.
For even faster gains on high-traffic Laravel applications, you can cache authenticated users to avoid a trip to the database.
Despite Dusk integrating flawlessly with the Laravel framework, sometimes your tests just won't run.
Laravel's conditionable trait can help make code more fluent by allowing you to conditionally invoke methods within a callback. This article gives you everything you need to know to start using it.
Thanks to the relatively new Number helper, ordinal numbers (like 1st, 2nd, 3rd, etc.) are now easy to output in Laravel. Let's take a look!
The new deferred props feature of Inertia v2 eliminates the need to write our own boilerplate code to delay loading data. Let's see how it works.
The usePoll helper has landed in Inertia, making it really easy to refresh prop data at a given interval. Here's how it works, and some tips.