Latest Laravel/PHP Articles

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


While developing a package that provides some bundled routes, I came across a problem that bewildered me at first but became clear after a few minutes: Neither...
The Service Container is very simple yet powerful tool in your Laravel app. Most of the time is associated to the Service Provider, where you usually bind a Cla...
I ran in to some composer problems and because of which, I removed composer cache. “How to make composer installations faster” is published by Jagadesha NH
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.
When it comes to microservices, the most common and advocated method for communicating with a service is a RESTful API. And REST is a great choice because it: B...
User::where('id',1)->update([]) and User::find(1)->update([]) do the same thing but in different ways. When working with databases in Laravel you usually find y...
This type of variables is a bit more complex to grasp, but after understanding the concept you will not have any problems to fully exploiting their power in you...
One of best feature of laravel I really like is automatically injecting dependencies, this might sound more complicated then actually it is. In simple terms inj...
Fathom Analytics | Fast, simple and privacy-focused website analytics. Fathom Analytics | Fast, simple and privacy-focused website analytics.
A friend who is just getting into using Nodejs for backend development asked me to explain the difference between using session and jwt. So I thought I’d write...
When adding a form to a public site, there’s a risk that spam bots will try to submit it with fake values. We recently released a new package, called laravel-ho...
Choosing a right PHP framework to develop a web application for your business can be a very difficult task because there are so many other options available. Fr...
With the complexity of microservices, security becomes a harder issue to address because there are so many areas to tackle the issue: This tutorial will ONLY fo...
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.
One of the best benefits of Microservices is the size of the applications, they are tiny! Only a few hundred lines of code, maybe a few files, and you have a se...
Have you ever profiled how long does it take for your PHP or PHP-FPM docker image to build? Probably, you have noticed that the composer install step takes the...
This article is a small tutorial on how to start broadcasting Laravel notifications with Pusher and receiving them in React. I had some trouble finding all the...
When I work with APIs, I usually create a single PHP class which is responsible for sending the Guzzle HTTP request. It usually looks like this: <?php namesp...