Message
class Message extends NonSequentialIdModel (View source)
Traits
Properties
bool | $timestamps | Indicates if the model should be timestamped. | from Model |
bool | $incrementing | Indicates if the IDs are auto-incrementing. | from NonSequentialIdModel |
Methods
Mustard uses camel case for class properties, and snake case for database columns.
Get a relationship. We override this method from the parent to add a camel_case() conversion for the key.
Mustard uses camel case for class properties, and snake case for database columns.
Override the parent's url attribute.
Return the time difference between now and the date the message was sent.
Scope of sent messages.
Scope of received messages.
Scope of unread messages.
Scope of read messages.
Relationship to the children messages.
Relationship to the parent message.
Relationship to the receiving user.
Relationship to the sending 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.
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.
in
Model at line 79
__set(
string $property,
mixed $value)
Mustard uses camel case for class properties, and snake case for database columns.
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.
at line 72
Builder
scopeSent($query)
Scope of sent messages.
at line 85
Builder
scopeReceived($query)
Scope of received messages.
at line 98
Builder
scopeUnread($query)
Scope of unread messages.
at line 111
Builder
scopeRead($query)
Scope of read messages.
at line 121
HasMany
children()
Relationship to the children messages.
at line 131
BelongsTo
parent()
Relationship to the parent message.
at line 141
BelongsTo
recipient()
Relationship to the receiving user.
at line 151
BelongsTo
sender()
Relationship to the sending user.
at line 161
BelongsTo
user()
Relationship to a user's account.