class Bid extends Model (View source)

Traits

EloquentJoins\ModelTrait

Properties

bool $timestamps Indicates if the model should be timestamped. from  Model

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

from  Model
getSlugAttribute()

No description

from  Model
BelongsTo
item()

Relationship to an item.

BelongsTo
bidder()

Relationship to a user.

static  integer
totalPlaced( integer $since, integer $until = null)

Return the total number of bids.

static  integer
averageAmount( integer $since, integer $until = null)

Return the average amount of bids.

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

in Model at line 84
getUrlAttribute()

in Model at line 89
getSlugAttribute()

at line 45
BelongsTo item()

Relationship to an item.

Return Value

BelongsTo

at line 55
BelongsTo bidder()

Relationship to a user.

Return Value

BelongsTo

at line 67
static integer totalPlaced( integer $since, integer $until = null)

Return the total number of bids.

Parameters

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

Return Value

integer

at line 83
static integer averageAmount( integer $since, integer $until = null)

Return the average amount of bids.

Parameters

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

Return Value

integer