DatabaseNotification::notifiable()

notifiable() Get the notifiable entity that the notification belongs to.

DatabaseNotification::newQueryWithoutScopes()

Builder|Model newQueryWithoutScopes() Get a new query builder that doesn't have any global scopes. Return Value Builder|Model

DatabaseNotification::newQueryWithoutScope()

Builder newQueryWithoutScope(Scope|string $scope) Get a new query instance without a given scope. Parameters Scope|string $scope Return Value Builder

DatabaseNotification::newQuery()

Builder newQuery() Get a new query builder for the model's table. Return Value Builder

DatabaseNotification::newPivot()

Pivot newPivot(Model $parent, array $attributes, string $table, bool $exists) Create a new pivot model instance. Parameters Model $parent array $attributes string $table bool $exists Return Value Pivot

DatabaseNotification::newInstance()

Model newInstance(array $attributes = array(), bool $exists = false) Create a new instance of the given model. Parameters array $attributes bool $exists Return Value Model

DatabaseNotification::newFromBuilder()

Model newFromBuilder(array $attributes = array(), string|null $connection = null) Create a new model instance that is existing. Parameters array $attributes string|null $connection Return Value Model

DatabaseNotification::newEloquentBuilder()

Builder|Model newEloquentBuilder(Builder $query) Create a new Eloquent query builder for the model. Parameters Builder $query Return Value Builder|Model

DatabaseNotification::newCollection()

Collection newCollection(array $models = array()) Create a new database notification collection instance. Parameters array $models Return Value Collection

DatabaseNotification::morphToMany()

MorphToMany morphToMany(string $related, string $name, string $table = null, string $foreignKey = null, string $otherKey = null, bool $inverse = false) Define a polymorphic many-to-many relationship. Parameters string $related string $name string $table string $foreignKey string $otherKey bool $inverse Return Value MorphToMany