User
class User extends NonSequentialIdModel implements Authenticatable, Authorizable, CanResetPassword, CanVerifyEmail (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.
No description
Shortcut method for sending a user an email.
Return the user's feedback score.
Get users the user has a substantial connection with.
Return the time difference between now and the user's last login.
Return the time difference between now and the user's join date.
Return the user's feedback url.
Return true if user is watching the item.
Return number of unread messages.
Scope of buyers.
Scope of sellers.
Relationship to bank details.
Relationship to bids.
Relationship to feedback left for other users.
Relationship to feedback received from other users.
Relationship to items the user has listed.
Relationship to messages.
Relationship to postal addresses.
Relationship to item purchases.
Relationship to sold items.
Relationship to items the user is watching.
Relationship to won items.
Find a record by the email address.
Find a record by the email address.
Shortcut method for signing up a new user.
Return the total number of users.
Return the total number of users that have placed bids.
Return the total number of users with associated purchases.
Return the total number of users that have posted items.
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 156
getUrlAttribute()
in
Model at line 89
getSlugAttribute()
at line 68
sendEmail(
string $subject,
string $view,
array $vars = array())
Shortcut method for sending a user an email.
at line 88
int
getFeedbackScore()
Return the user's feedback score.
at line 98
Collection
getAcquaintances()
Get users the user has a substantial connection with.
at line 132
DateInterval
getSinceLastLogin()
Return the time difference between now and the user's last login.
at line 144
DateInterval
getSinceJoined()
Return the time difference between now and the user's join date.
at line 166
string
getFeedbackUrlAttribute()
Return the user's feedback url.
at line 178
bool
isWatching(
Item $item)
Return true if user is watching the item.
at line 188
int
getUnreadMessages()
Return number of unread messages.
at line 200
Builder
scopeBuyers(
Builder $query)
Scope of buyers.
at line 212
Builder
scopeSellers(
Builder $query)
Scope of sellers.
at line 222
HasOne
bankDetails()
Relationship to bank details.
at line 232
HasMany
bids()
Relationship to bids.
at line 242
HasMany
feedbackLeft()
Relationship to feedback left for other users.
at line 252
HasManyThrough
feedbackReceived()
Relationship to feedback received from other users.
at line 262
HasMany
items()
Relationship to items the user has listed.
at line 272
HasMany
messages()
Relationship to messages.
at line 282
HasMany
postalAddresses()
Relationship to postal addresses.
at line 292
HasMany
purchases()
Relationship to item purchases.
at line 302
HasManyThrough
sales()
Relationship to sold items.
at line 312
BelongsToMany
watching()
Relationship to items the user is watching.
at line 322
HasManyThrough
won()
Relationship to won items.
at line 334
static
User|null
findByEmail(
string $email)
Find a record by the email address.
at line 346
static
User|null
findByUsername(
string $username)
Find a record by the email address.
at line 360
static
User
register(
string $email,
string $password,
string $username)
Shortcut method for signing up a new user.
at line 385
static
int
totalRegistered(
int $since,
int $until = null)
Return the total number of users.
at line 402
static
int
totalBidders(
int $since,
int $until = null)
Return the total number of users that have placed bids.
at line 420
static
int
totalBuyers(
int $since,
int $until = null)
Return the total number of users with associated purchases.
at line 438
static
int
totalSellers(
int $since,
int $until = null)
Return the total number of users that have posted items.