Methods |
public
static
|
bootHasEvents(): void
Boot the has event trait for a model.
Boot the has event trait for a model.
|
#
|
public
static
|
resolveObserveAttributes(): array
Resolve the observe class names from the attributes.
Resolve the observe class names from the attributes.
|
#
|
public
static
|
observe(object|array|string $classes): void
Register observers with the model.
Register observers with the model.
Throws
|
#
|
protected
|
registerObserver(object|string $class): void
Register a single observer with the model.
Register a single observer with the model.
Throws
|
#
|
public
|
getObservableEvents(): array
Get the observable event names.
Get the observable event names.
|
#
|
public
|
setObservableEvents(array $observables): $this
Set the observable event names.
Set the observable event names.
|
#
|
public
|
addObservableEvents(array|mixed $observables): void
Add an observable event name.
Add an observable event name.
|
#
|
public
|
removeObservableEvents(array|mixed $observables): void
Remove an observable event name.
Remove an observable event name.
|
#
|
protected
static
|
registerModelEvent(string $event, QueuedClosure|callable|array|class-string $callback): void
Register a model event with the dispatcher.
Register a model event with the dispatcher.
|
#
|
protected
|
fireModelEvent(string $event, bool $halt = true): mixed
Fire the given event for the model.
Fire the given event for the model.
|
#
|
protected
|
fireCustomModelEvent(string $event, string $method): mixed|null
Fire a custom model event for the given event.
Fire a custom model event for the given event.
|
#
|
protected
|
filterModelEventResults(mixed $result): mixed
Filter the model event results.
Filter the model event results.
|
#
|
public
static
|
retrieved(QueuedClosure|callable|array|class-string $callback): void
Register a retrieved model event with the dispatcher.
Register a retrieved model event with the dispatcher.
|
#
|
public
static
|
saving(QueuedClosure|callable|array|class-string $callback): void
Register a saving model event with the dispatcher.
Register a saving model event with the dispatcher.
|
#
|
public
static
|
saved(QueuedClosure|callable|array|class-string $callback): void
Register a saved model event with the dispatcher.
Register a saved model event with the dispatcher.
|
#
|
public
static
|
updating(QueuedClosure|callable|array|class-string $callback): void
Register an updating model event with the dispatcher.
Register an updating model event with the dispatcher.
|
#
|
public
static
|
updated(QueuedClosure|callable|array|class-string $callback): void
Register an updated model event with the dispatcher.
Register an updated model event with the dispatcher.
|
#
|
public
static
|
creating(QueuedClosure|callable|array|class-string $callback): void
Register a creating model event with the dispatcher.
Register a creating model event with the dispatcher.
|
#
|
public
static
|
created(QueuedClosure|callable|array|class-string $callback): void
Register a created model event with the dispatcher.
Register a created model event with the dispatcher.
|
#
|
public
static
|
replicating(QueuedClosure|callable|array|class-string $callback): void
Register a replicating model event with the dispatcher.
Register a replicating model event with the dispatcher.
|
#
|
public
static
|
deleting(QueuedClosure|callable|array|class-string $callback): void
Register a deleting model event with the dispatcher.
Register a deleting model event with the dispatcher.
|
#
|
public
static
|
deleted(QueuedClosure|callable|array|class-string $callback): void
Register a deleted model event with the dispatcher.
Register a deleted model event with the dispatcher.
|
#
|
public
static
|
flushEventListeners(): void
Remove all the event listeners for the model.
Remove all the event listeners for the model.
|
#
|
public
|
dispatchesEvents(): array
Get the event map for the model.
Get the event map for the model.
|
#
|
public
static
|
getEventDispatcher(): Dispatcher|null
Get the event dispatcher instance.
Get the event dispatcher instance.
|
#
|
public
static
|
setEventDispatcher(Dispatcher $dispatcher): void
Set the event dispatcher instance.
Set the event dispatcher instance.
|
#
|
public
static
|
unsetEventDispatcher(): void
Unset the event dispatcher for models.
Unset the event dispatcher for models.
|
#
|
public
static
|
withoutEvents(callable $callback): mixed
Execute a callback without firing any model events for any model type.
Execute a callback without firing any model events for any model type.
|
#
|