abstract class AbstractModel extends Model
Base model class, building on Eloquent.
Adds the ability for custom relations to be added to a model during runtime. These relations behave in the same way that you would expect; they can be queried, eager loaded, and accessed as an attribute.
Properties
Methods
<p>Get an attribute from the model. If nothing is found, attempt to load a custom relation method with this key.</p>
<p>Register a callback to be run once after the model is saved.</p>
<p>Register a callback to be run once after the model is deleted.</p>
Details
at
line 71
static
boot()
at
line 88
__construct(array $attributes = [])
at
line 103
array
getCasts()
at
line 118
getAttribute($key)
<p>Get an attribute from the model. If nothing is found, attempt to load a custom relation method with this key.</p>
at
line 143
protected mixed
getCustomRelation(string $name)
<p>Get a custom relation object.</p>
at
line 158
void
afterSave(callable $callback)
<p>Register a callback to be run once after the model is saved.</p>
at
line 166
void
afterDelete(callable $callback)
<p>Register a callback to be run once after the model is deleted.</p>