Skip to content

DynamicModel Model

Creates runtime table bindings when FluentCommunity needs an ORM model for a dynamic table.

Table

  • Table: Inherited / runtime-defined

  • Primary key: id

  • Extends: Model

Attributes

ColumnTypeNullableDefaultDescription

Relationships

MethodTypeTargetNotes
No relationships are declared on this model.

Scopes

ScopeParametersPurpose
No custom scopes are declared on this model.

Key Methods

MethodDescription
No additional public methods are documented for this model.

Usage Examples

php
use FluentCommunity\App\Models\DynamicModel;

$records = DynamicModel::query()
    
    ->limit(10)
    ->get();

$first = DynamicModel::query()->first();

FluentCommunity developer documentation