Latest Laravel/PHP Articles

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


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
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...
Fathom Analytics | Fast, simple and privacy-focused website analytics. Fathom Analytics | Fast, simple and privacy-focused website analytics.
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...
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...
CodeMentor Codementor is an online marketplace connecting developers with experts for on- demand 1:1 help via screen sharing, video, and text chat.
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...
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...
Digital Ocean Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.
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...
Memory constraints is an issue that I’ve been mostly able to avoid-until now. With most of time spent working on web applications, short requests and text based...