class Message extends NonSequentialIdModel (View source)

Traits

EloquentJoins\ModelTrait

Properties

bool $timestamps Indicates if the model should be timestamped. from  Model
bool $incrementing Indicates if the IDs are auto-incrementing. from  NonSequentialIdModel

Methods

mixed
__get( string $property)

Mustard uses camel case for class properties, and snake case for database columns.

from  Model
getRelationValue($key)

Get a relationship. We override this method from the parent to add a camel_case() conversion for the key.

from  Model
__set( string $property, mixed $value)

Mustard uses camel case for class properties, and snake case for database columns.

from  Model
getUrlAttribute()

Override the parent's url attribute.

getSlugAttribute()

No description

from  Model
getSinceSent()

Return the time difference between now and the date the message was sent.

Builder
scopeSent($query)

Scope of sent messages.

Builder
scopeReceived($query)

Scope of received messages.

Builder
scopeUnread($query)

Scope of unread messages.

Builder
scopeRead($query)

Scope of read messages.

HasMany
children()

Relationship to the children messages.

BelongsTo
parent()

Relationship to the parent message.

BelongsTo
recipient()

Relationship to the receiving user.

BelongsTo
sender()

Relationship to the sending user.

BelongsTo
user()

Relationship to a user's account.

Details

in Model at line 45
mixed __get( string $property)

Mustard uses camel case for class properties, and snake case for database columns.

Parameters

string $property

Return Value

mixed

in Model at line 54
getRelationValue($key)

Get a relationship. We override this method from the parent to add a camel_case() conversion for the key.

Parameters

$key

in Model at line 79
__set( string $property, mixed $value)

Mustard uses camel case for class properties, and snake case for database columns.

Parameters

string $property
mixed $value

at line 59
getUrlAttribute()

Override the parent's url attribute.

in Model at line 89
getSlugAttribute()

at line 47
DateInterval getSinceSent()

Return the time difference between now and the date the message was sent.

Return Value

DateInterval

at line 72
Builder scopeSent($query)

Scope of sent messages.

Parameters

$query

Return Value

Builder

at line 85
Builder scopeReceived($query)

Scope of received messages.

Parameters

$query

Return Value

Builder

at line 98
Builder scopeUnread($query)

Scope of unread messages.

Parameters

$query

Return Value

Builder

at line 111
Builder scopeRead($query)

Scope of read messages.

Parameters

$query

Return Value

Builder

at line 121
HasMany children()

Relationship to the children messages.

Return Value

HasMany

at line 131
BelongsTo parent()

Relationship to the parent message.

Return Value

BelongsTo

at line 141
BelongsTo recipient()

Relationship to the receiving user.

Return Value

BelongsTo

at line 151
BelongsTo sender()

Relationship to the sending user.

Return Value

BelongsTo

at line 161
BelongsTo user()

Relationship to a user's account.

Return Value

BelongsTo