How to use First-class Callables in PHP 8.1
One of the very important concepts that every PHP developers should know is the concept of Callables. A callable is...
These articles are a diary of solutions to my blockers as well as what I observe some programmers get stuck on, and other fun technical write-ups.
One of the very important concepts that every PHP developers should know is the concept of Callables. A callable is...
You may have encountered situations where precise decimal calculations are crucial, such as in financial or scientific applications. PHP's BCMath...
Redirecting users in Laravel can be accomplished using several methods, each with its own advantages. In this article, we'll explore...
Imagine you're working on a page builder application that allows users to create and customize web pages by dragging and...
Updating the value of Livewire form inputs, e.g. Filament's Forms\Components\Textarea component, using JavaScript can lead to issues...
Imagine you're building out an admin panel with Filament, and you are leveraging the power and flexibility of its KeyValue...
One of our worst nightmares as developers is Out of Memory (OOM) exceptions. Ever added a then handler to a...
Imagine you're managing an e-commerce platform and want to identify customers who haven't made a purchase in your store. This...
Business requirements often require us to perform actions when certain events occur in our application, such as when a user...
As developers, we rarely build everything from scratch. We usually rely on third-party libraries and frameworks, pulling them in as...