Eloquent ORM topic

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.

List Eloquent ORM repositories

laravel-translator

274
Stars
28
Forks
Watchers

An Eloquent translator for Laravel

laravel-time-series

86
Stars
6
Forks
Watchers

⏰📊✨Laravel Time Series - Provides an API to create and maintain data projections (statistics, aggregates, etc.) from your Eloquent models, and convert them to time series.

model-notes

6
Stars
1
Forks
Watchers

Add Notes against any Laravel Model from any other (or same) Laravel Model

encryptable

27
Stars
3
Forks
Watchers

Laravel package for persisting encrypted Model properties, providing decryption when accessed.

laravel-mongodb

6.9k
Stars
1.4k
Forks
Watchers

A MongoDB based Eloquent model and Query builder for Laravel (Moloquent)

laravel-eloquent-case

109
Stars
8
Forks
Watchers

CASE statement support for Laravel Query Builder.

eloquent-has-by-join

24
Stars
2
Forks
Watchers

Convert has() and whereHas() constraints to join() ones for single-result relations.

Convert has() and whereHas() constraints to non-dependent subqueries.

laravel-cached-database-stickiness

52
Stars
3
Forks
Watchers

Guarantee database stickiness over the same user's consecutive requests

eloquent-repository

26
Stars
9
Forks
Watchers

Eloquent Repository for Laravel