Skip to content
#

Eloquent ORM

Eloquent is an ORM which is part of the Laravel framework. When using Eloquent, each database table has a corresponding "Model" that is used to interact with that table. Eloquent models are usually stored in app/Models and extend from Laravel's model base class Illuminate\Database\Eloquent\Model. In addition to retrieving records from the database table, Eloquent models allow you to insert, update, and delete records from the table as well.

Here are 3 public repositories matching this topic...

With Laravel Query Adviser you can get more insights into the SQL queries created by Eloquent models used in your app. It logs the queries used by your application and provides a helpful overview of the SQL queries. You can rerun the SQL query to analyze the database impact or copy the SQL query to your clipboard.

  • Updated Dec 6, 2023
  • Vue
Followers
16 followers
Website
laravel.com/docs/eloquent

Related Topics

laravel moloquent orm