Latest Laravel/PHP Articles

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


Let's start with the basics of how a CPU works. The operating system shares the memory address where the instruction is stored, and the core retrieves it, decod...
AWS will begin charging for IPv4 addresses associated with AWS resources such as EC2/RDS instances, NAT gateways, and load balancers on February 1st, 2024. Each...
I love the movie Intersteller, which is where I first learned about Murphy's law: Anything that can go wrong will go wrong. In software development, many things...
Fathom Analytics | Fast, simple and privacy-focused website analytics. Fathom Analytics | Fast, simple and privacy-focused website analytics.
Laravel includes an excellent queue component that allows us to delegate time-consuming tasks to background processes. A queue worker, no matter how well optimi...
A few weeks ago, Jeffrey asked a question on the Laracasts channel about our predictions for the future of programmers in the AI era. Like you, I followed the A...
Most startups' and indie hackers' web apps can run on DigitalOcean's $6 VPS. You can test the market and gauge demand for your app on that VPS. Nginx i...
Let's take a look at this typical PHP code: function names() { $data = Http::get('data.location/products')->json(); $names = []; foreach ($data as $item){ $name...
Digital Ocean Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.
Restarting Laravel's queue workers should be an essential part of your deployment script. If that's the case, the worker process will exit and your process mana...

themsaid.com

Go with PHP
Read the following code as if it were a documentation page: $user = $request->user(); if ($user->cannot('place-order')) { abort(403); } $validated = $request->v...
Laravel 8 ships with a neat feature that allows us to dispatch a group of jobs to the queue to be executed in parallel. We can monitor these jobs and execute ce...
If you're running your queue workers on a server with limited resources, or a server that's also used to serve HTTP requests and do other tasks, it's important...
Digital Ocean Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.
There has been a debate—for a long time—on whether or not PHP is a good choice for long-running processes. Based on my experience working on large scale project...
The person holding the chicken is the only person who is allowed to talk. If you don't hold the chicken you cannot speak. Replace Chicken with Mutex an...
Let's perform a dive into how workers run your jobs. You have to manually restart the worker to reflect any code change you made in your application. T...
In this series of video tweets, I've explained some of the most confusing Queue configuration keys: Recorded a short video explaining some of the most confusing...