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!
Laravel's paginator allows you to control the amount of numbered links rendered for pagination. Here's how to adjust it, and how it works.
Both Livewire and Inertia are incredibly popular stacks for building applications in Laravel. If you're stuck choosing between the two, let's weigh which one is right for you.
Unless you're running end-to-end tests, you probably don't need Vite to build assets before your test suite runs.
If you're using the Number helper in Laravel to format currency, there's a quick and easy global way to set the default currency.
If you just need to run a single migration file in Laravel, here's how to do it.
Enums were introduced in PHP 8.1, and Laravel has taken full advantage of their power. Let's take a look at how you're able to use Enums in your Laravel projects today.
In this article, we'll get real-time broadcasting working between a Nuxt SPA and Laravel using Laravel Reverb and Echo.
When defining routes in Laravel, sometimes things go wrong. Here's why, and how to fix them.