
Laravel Eloquent Tutorial
Laravel Eloquent, an object-relational mapper (ORM) that uses an eloquent model and allows the interaction with a database. Each database table has its corresponding model that provides...
$READ_ARTICLE[->]Simple place for great programmer

Laravel Eloquent, an object-relational mapper (ORM) that uses an eloquent model and allows the interaction with a database. Each database table has its corresponding model that provides...
$READ_ARTICLE[->]
Using one database connection is more common and widely known for web applications, but in advanced application architecture we might need to use multiple database connections in laravel application....

Automatic application deployment in AWS, Hmm… Sounds familiar? if not then don’t worry it’s a part of DevOps Operations and we will see how to do exactly that. If you are managing servers and hosting...
Python is one of the most popular programming languages in the world, especially among beginners. Its clean syntax, massive ecosystem, and versatility make it an excellent first language for anyone st...
This article is a beginner-friendly, step-by-step guide to using Laravel queues. You’ll learn the core concepts, how to configure a queue driver, how to create and dispatch jobs, and how to run worker...

Laravel Validation provides an easy way to validate incoming data, and we know that all the application’s incoming data must be validated before they are stored into the database or processed further,...
In this post we will see how you can implement token based authentication in lumen or laravel. We will use JWT token in our implementation. As, In any API, session is not maintained as it works on sta...