Latest Laravel/PHP Articles

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


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...
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...
CodeMentor Codementor is an online marketplace connecting developers with experts for on- demand 1:1 help via screen sharing, video, and text chat.
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...
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...
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.
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...
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...
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.
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...
Fly.io can build and run your Laravel apps globally, which is especially good for Livewire! Deploy your https://fly.io/docs/laravel/ on Fly.io, you’ll be up and...
In the previous article, we built a https://artisansweb.net/build-carousel-block-for-gutenberg where we allow uploading multiple images using the MediaUpload co...