Latest Laravel/PHP Articles

Latest Laravel/PHP Articles curated daily from around the web.


While refactoring and optimising legacy code I’ve ran into a method signature (optional parameters) inconsistency which caused performance issues as part of the...
Let's say you have multiple Ray calls that you need to temporarily disable. You could go and comment them all out, or you could use ray()->disable() at the top...
I use this technique to group the bug fixes array by date in the Inspector dashboard, and I thought it could be a good code snippet idea for others. I also wrot...
Digital Ocean Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.
I use this technique to group the bug fixes array by date in the Inspector UI, and I thought it could be a good code snippet idea for other developers. I also w...
Previously, I made my first GitHub Action backup script, which you can read about in a previous post and it was a success from my point of view. I had these cri...
DynamoDB is a fully managed NoSQL database service provided by Amazon Web Services (AWS). It is designed to deliver high performance and scalability while ensur...

ryangjchandler.co.uk

Using Bunny Fonts in Laravel
I've been using Bunny Fonts for quite a while now, after switching away from Google Fonts due to GDPR requirements and concerns. But here's something that has a...
Fathom Analytics | Fast, simple and privacy-focused website analytics. Fathom Analytics | Fast, simple and privacy-focused website analytics.
When a team works on a project, keeping the codebase up to coding standards might be challenging. Perhaps a team member submits code that deviates from the esta...
I was listening to a recent episode of the Mostly Technical podcast, where Ian and Aaron make their case for using Livewire over Inertia.
In most cases, PHP-FPM settings aren't something an average developer would be in a position to examine more closely. That's ok; not everyone wants or has to sp...
Programming languages are evolving fast, and developers need to keep up with reason. I have heard about many colleagues wanting to explore new languages, and th...
Digital Ocean Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.
In this article, we're going to discuss the system design of an analytics platform such as Fathom, SplitBee, or Google Analytics. I'll use SplitBee as an exampl...
In Laravel 11, the RouteServiceProvider.php file is removed. So the question is how can we configure the routes? Let's say we want to add API routes with a pref...
My goal in this article is to give you the last indexing tutorial you'll ever need. This is one of the most important topics to understand, in my opinion. No ma...
When it comes to working with larger datasets one of the best you can apply to any problem is chunking. Divide the dataset into smaller chunks and process them....