Skip to content

Commit 16ebb49

Browse files
authored
Merge pull request #3953 from shaedrich/eloquent
Add related to topic "Eloquent"
2 parents 3d9d8f4 + 599d292 commit 16ebb49

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

topics/eloquent/index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
display_name: Eloquent ORM
3+
short_description: Eloquent is an ORM which is part of the Laravel framework.
4+
aliases: eloquent-orm
5+
topic: eloquent
6+
related: laravel, orm, moloquent
7+
url: https://laravel.com/docs/eloquent
8+
---
9+
**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.

0 commit comments

Comments
 (0)