Latest Laravel/PHP Articles

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


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...
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.

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...
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...
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.
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...
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...
Glimpse streamlines Laravel development by seamlessly deploying GitHub pull requests to preview environments with the help of Laravel Forge. Glimpse streamlines Laravel development by seamlessly deploying GitHub pull requests to preview environments with the help of Laravel Forge.
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...

sebastiandedeyne.com

Description lists in Markdown
https://sebastiandedeyne.com/description-lists-in-markdown https://sebastiandedeyne.com/tags/markdown A lesser-known piece of Markdown syntax (and HTML) are des...
https://sebastiandedeyne.com/ https://sebastiandedeyne.com/about https://sebastiandedeyne.com/speaking https://sebastiandedeyne.com/uses https://sebastiandedeyn...
In this article, I'm going to show you how to dockerize an application that has the following components: Laravel API It's monorepo containing these folders: ap...