⟩ Do you know Laravel Eloquent?
Laravel’s Eloquent ORM is one the most popular PHP ORM (OBJECT RELATIONSHIP MAPPING).
It provides a beautiful, simple ActiveRecord implementation to work with your database.
In Eloquent each database table has the corresponding MODEL that is used to interact with table and perform a database related operation on the table.
Sample Model Class in Laravel.
namespace App;
use IlluminateDatabaseEloquentModel;
class Users extends Model
{
}