Latest Laravel/PHP Articles

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


Let’s start by describing what the parts of this task are, and what we are doing today. The overall goal is this: We want all of our application files to meet a...
Certified Laravel | PHP | Magento Developer.
Saw it somewhere and it was so acurate.
CodeMentor Codementor is an online marketplace connecting developers with experts for on- demand 1:1 help via screen sharing, video, and text chat.
Route model binding is a great and well-known feature of the Laravel framework. But, when we work with nested resources, we might write a custom rule explicitly...
We create an identifier (id) and database independent object api. We create a model, api platform configurations and data provider respectively.
When developing your next project, sometimes it’s better to just start using the Laravel Built-in Server by calling php artisan serve.
Does that send shivers of high-level, computer science theory dread through your body? Another one of those “I should dig into that someday” feelings?
Digital Ocean Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.
Namespaces essentially prevent class name or function name collision. Using an analogy: It is like when you have 2 files with the same name, your operating syst...
You get a Class does not exist exception sometimes when running projects. Let’s see such a case today. We are calling userTableSeeder.php from DatabaseSeeder.ph...
Here is a real simple guide to creating a Laravel/React app, and getting the page loaded in no time. Assumptions: You need to have a few things already installe...
Let me start by saying running a laravel Project using Windows 7 can be frustrated. The tables your migration will create will not be complete, and that will fr...
CodeMentor Codementor is an online marketplace connecting developers with experts for on- demand 1:1 help via screen sharing, video, and text chat.
CORS stands for Cross-origin resource sharing. The concept is related to the same origin policy which all browsers implement. In a nutshell, this policy says th...
My last published article was about Laravel in production where we deployed to Heroku. Now we’ll proceed to add the database configuration for our Laravel app o...
It is very easy to create QR code in Laravel Voyager. Once you installed the Laravel framework and Voyager, you can edit the base controller of Voyager to enabl...
This is my second article about seeding in laravel . Finally we need to hit artisan commands to generates seed files for tables.