Laravel Installation and Development Environment Preparation with Docker Compose
Quickly and isolatedly deploy your Laravel application in three separate containers (PHP-FPM, MySQL, Nginx) using Docker Compose on Ubuntu 22.04.
Database Management Guide with Laravel Artisan Commands
Learn how to add, list and delete records in the database safely and quickly by creating Artisan commands (CLI) in Laravel.
How to Create a One-to-Many Relationship with Laravel Eloquent?
How to define a One-to-Many Relationship (LinkList -> Link) between two models, how to add a foreign key and how to update model methods using Laravel Eloquent ORM?
How to Update Database Records with Laravel Eloquent?
Learn how to update the description of links in the database and the associated list using Laravel Eloquent ORM.
How to Delete Database Records with Laravel Eloquent?
Learn how to bulk update associated data when deleting a list using the delete() method and Artisan Commands in Laravel Eloquent ORM.
How to Add New Records to Database with Laravel Eloquent?
How can you manage associated data and secure your database operations when adding new records with Laravel Eloquent ORM?
Creating a Database Model Using Eloquent ORM with Laravel
Learn step by step how to create a Model to interact with your database tables using Laravel Eloquent ORM.
Laravel Installation: LEMP Stack Configuration with Nginx on Ubuntu 22.04
Step by step install your Laravel application on Ubuntu 22.04 using LEMP stack with Nginx and MySQL and configure its connection to the database.
Laravel Migrations: Creating and Managing Database Tables
Learn how to create, update, and version database tables without writing SQL using Laravel Migrations.

