class User extends NonSequentialIdModel implements Authenticatable, Authorizable, CanResetPassword, CanVerifyEmail (View source)

Traits

Illuminate\Auth\Authenticatable
Illuminate\Foundation\Auth\Access\Authorizable
Illuminate\Auth\Passwords\CanResetPassword
LaravelVerifyEmails\Auth\VerifyEmails\CanVerifyEmail
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()

No description

getSlugAttribute()

No description

from  Model
sendEmail( string $subject, string $view, array $vars = array())

Shortcut method for sending a user an email.

int
getFeedbackScore()

Return the user's feedback score.

Collection
getAcquaintances()

Get users the user has a substantial connection with.

getSinceLastLogin()

Return the time difference between now and the user's last login.

getSinceJoined()

Return the time difference between now and the user's join date.

string
getFeedbackUrlAttribute()

Return the user's feedback url.

bool
isWatching( Item $item)

Return true if user is watching the item.

int
getUnreadMessages()

Return number of unread messages.

Builder
scopeBuyers( Builder $query)

Scope of buyers.

Builder
scopeSellers( Builder $query)

Scope of sellers.

HasOne
bankDetails()

Relationship to bank details.

HasMany
bids()

Relationship to bids.

HasMany
feedbackLeft()

Relationship to feedback left for other users.

HasManyThrough
feedbackReceived()

Relationship to feedback received from other users.

HasMany
items()

Relationship to items the user has listed.

HasMany
messages()

Relationship to messages.

HasMany
postalAddresses()

Relationship to postal addresses.

HasMany
purchases()

Relationship to item purchases.

HasManyThrough
sales()

Relationship to sold items.

BelongsToMany
watching()

Relationship to items the user is watching.

HasManyThrough
won()

Relationship to won items.

static  User|null
findByEmail( string $email)

Find a record by the email address.

static  User|null
findByUsername( string $username)

Find a record by the email address.

static  User
register( string $email, string $password, string $username)

Shortcut method for signing up a new user.

static  int
totalRegistered( int $since, int $until = null)

Return the total number of users.

static  int
totalBidders( int $since, int $until = null)

Return the total number of users that have placed bids.

static  int
totalBuyers( int $since, int $until = null)

Return the total number of users with associated purchases.

static  int
totalSellers( int $since, int $until = null)

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.

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 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.

Parameters

string $subject
string $view
array $vars

at line 88
int getFeedbackScore()

Return the user's feedback score.

Return Value

int

at line 98
Collection getAcquaintances()

Get users the user has a substantial connection with.

Return Value

Collection

at line 132
DateInterval getSinceLastLogin()

Return the time difference between now and the user's last login.

Return Value

DateInterval

at line 144
DateInterval getSinceJoined()

Return the time difference between now and the user's join date.

Return Value

DateInterval

at line 166
string getFeedbackUrlAttribute()

Return the user's feedback url.

Return Value

string

at line 178
bool isWatching( Item $item)

Return true if user is watching the item.

Parameters

Item $item

Return Value

bool

at line 188
int getUnreadMessages()

Return number of unread messages.

Return Value

int

at line 200
Builder scopeBuyers( Builder $query)

Scope of buyers.

Parameters

Builder $query

Return Value

Builder

at line 212
Builder scopeSellers( Builder $query)

Scope of sellers.

Parameters

Builder $query

Return Value

Builder

at line 222
HasOne bankDetails()

Relationship to bank details.

Return Value

HasOne

at line 232
HasMany bids()

Relationship to bids.

Return Value

HasMany

at line 242
HasMany feedbackLeft()

Relationship to feedback left for other users.

Return Value

HasMany

at line 252
HasManyThrough feedbackReceived()

Relationship to feedback received from other users.

Return Value

HasManyThrough

at line 262
HasMany items()

Relationship to items the user has listed.

Return Value

HasMany

at line 272
HasMany messages()

Relationship to messages.

Return Value

HasMany

at line 282
HasMany postalAddresses()

Relationship to postal addresses.

Return Value

HasMany

at line 292
HasMany purchases()

Relationship to item purchases.

Return Value

HasMany

at line 302
HasManyThrough sales()

Relationship to sold items.

Return Value

HasManyThrough

at line 312
BelongsToMany watching()

Relationship to items the user is watching.

Return Value

BelongsToMany

at line 322
HasManyThrough won()

Relationship to won items.

Return Value

HasManyThrough

at line 334
static User|null findByEmail( string $email)

Find a record by the email address.

Parameters

string $email

Return Value

User|null

at line 346
static User|null findByUsername( string $username)

Find a record by the email address.

Parameters

string $username

Return Value

User|null

at line 360
static User register( string $email, string $password, string $username)

Shortcut method for signing up a new user.

Parameters

string $email
string $password
string $username

Return Value

User

at line 385
static int totalRegistered( int $since, int $until = null)

Return the total number of users.

Parameters

int $since UNIX timestamp to optionally specify a lower selection boundary.
int $until UNIX timestamp to optionally specify an upper selection boundary.

Return Value

int

at line 402
static int totalBidders( int $since, int $until = null)

Return the total number of users that have placed bids.

Parameters

int $since UNIX timestamp to optionally specify a lower selection boundary.
int $until UNIX timestamp to optionally specify an upper selection boundary.

Return Value

int

at line 420
static int totalBuyers( int $since, int $until = null)

Return the total number of users with associated purchases.

Parameters

int $since UNIX timestamp to optionally specify a lower selection boundary.
int $until UNIX timestamp to optionally specify an upper selection boundary.

Return Value

int

at line 438
static int totalSellers( int $since, int $until = null)

Return the total number of users that have posted items.

Parameters

int $since UNIX timestamp to optionally specify a lower selection boundary.
int $until UNIX timestamp to optionally specify an upper selection boundary.

Return Value

int