Latest Laravel/PHP Articles

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


My first real job in the programming industry was at a startup that demanded the world of me. I began with them as one of those simple wordpress theme changer g...
In the first part of this article on “how to build modular applications in Laravel” we discussed extensively on modules, and the benefits of modularizing your a...
There are many guides as to how to configure XDebug on Visual Studio Code (VSCode) to debug PHP. I still struggled setting it up initially although many differe...
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.
Let’s imagine this scenario: You are working on a Laravel application, and you found a bug either in the framework itself or in one of the third party libraries...
So initially we want to install Laravel 5.7 and then pull in the API, we’ll worry about the Hub later. Feel free to look through the getcandy.php config file, w...
Let’s imagine this scenario: You are working on a Laravel application, and you found a bug either in the framework itself or in one of the third party libraries...
So I initially thought there was more to this, but my team realized we could remove a bunch of unnecessary code from our spike. Thankfully, it’s much simpler an...
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.

stitcher.io

stitcher.io
The pros and cons of the pending RFC to add a JIT compiler to PHP.
A new 2-minute video showing probably the quickest way to create a new user in Laravel users table. If you want more videos like this, subscribe to our YouTube...
One of the major challenges in development is email testing on local development environments. This is why Mailtrap.io is a very essential service. Mailtrap is...
Prerequisites: Knowledge of Laravel, Laravel 5.5+ Installation, a Mailtrap.io account (Here’s an article on how to get one and set it up for Laravel) Difficulty...
CodeMentor Codementor is an online marketplace connecting developers with experts for on- demand 1:1 help via screen sharing, video, and text chat.
I’ve decided to write this short and (hopefully) helpful article after going through the struggles in trying to read, understand and refactor legacy unit tests...
In the past week I’ve had two weird bugs come up. After an hour or two of troubleshooting they both revolved around an extra character before the
When first starting my internship as a web developer, I was anxious to prove myself and my abilities. I wanted to make sure I could solve whatever problem was t...
Here’s how it looks in routes/web.php:Route::group(['prefix' => '{locale}'], function() { Route::get('/', function () { return view('welcome'); }); Auth::routes...