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.
laravel-translator
An Eloquent translator for Laravel
laravel-time-series
⏰📊✨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
Add Notes against any Laravel Model from any other (or same) Laravel Model
encryptable
Laravel package for persisting encrypted Model properties, providing decryption when accessed.
laravel-mongodb
A MongoDB based Eloquent model and Query builder for Laravel (Moloquent)
laravel-eloquent-case
CASE statement support for Laravel Query Builder.
eloquent-has-by-join
Convert has() and whereHas() constraints to join() ones for single-result relations.
eloquent-has-by-non-dependent-subquery
Convert has() and whereHas() constraints to non-dependent subqueries.
laravel-cached-database-stickiness
Guarantee database stickiness over the same user's consecutive requests
eloquent-repository
Eloquent Repository for Laravel