Databases

How To Query the Database in Laravel with Eloquent (Select) — step-by-step Programming tutorial on Progressive Robot

How To Query the Database in Laravel with Eloquent (Select)

One of the biggest advantages of using an ORM system is the ability to manipulate rows in a database table as objects within your codebase. Eloquent provides several methods that can be accessed directly from models to query the database and filter results without having to write SQL statements. In this guide, you’ll learn more about how to make database queries using Eloquent models.

Read more
How To Use Migrations to Create and Manage Database Tables in Laravel — step-by-step Programming tutorial on Progressive Robot

How To Use Migrations to Create and Manage Database Tables in Laravel

In this guide, you’ll create a database migration to set up the table where you’ll save the application links. In order to do that, you’ll use the [Artisan](https://laravel.com/docs/8.x/artisan) command-line tool that comes with Laravel by default. At the end, you will be able to destroy and recreate your database tables as many times as you want, using only `artisan` commands.

Read more
An Introduction to Queries in PostgreSQL — step-by-step Linux tutorial on Progressive Robot

An Introduction to Queries in PostgreSQL

In this guide, we will discuss the basic syntax of SQL queries as well as some of the more commonly-employed functions and operators. We will also practice making SQL queries using some sample data in a PostgreSQL database.

Read more
CHAT