class Item 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()

No description

from  Model
getSlugAttribute()

No description

from  Model
int
getEndDate()

Return UNIX timestamp for item's end.

getTimeLeft()

Return the time difference between now and the end of the item.

getStartingIn()

Return the time difference between now and the start of the item.

getDuration()

Return the time difference between 0 and the end of the duration.

float
getHighestBidAmount()

Return the highest bid amount placed.

Photo
getListingPhoto()

Return the primary photo.

Collection
getBidHistory()

Return the item's bid history.

bool
isCollectable()

Return true if item can be collected by the buyer.

bool
isBidder( User $user)

Return true if user has bid on the item.

bool
isWinner( User $user)

Return true if user has won the item.

bool
isBuyer( User $user)

Return true if user has ever purchased the item.

bool
isActive()

Return true if the item is still active.

bool
isStarted()

Return true if the item has started.

bool
isEnded()

Return true if the item has ended.

bool
isReserved()

Return true if the item is has not reached a reserve price.

bool
hasFixed()

Return true if the item has a fixed price.

bool
hasQuantity()

Return true if the item has a quantity.

bool
hasReserve()

Return true if the item has a reserve price.

bool
hasBids()

Return true if the item has bids.

void
placeBid( float $amount, User $user)

Shortcut method for placing a bid.

void
end()

End an item, marking a winning bid.

void
withdraw()

Withdraw an item without marking a winning bid.

Builder
scopeKeywords( Builder $query, string $keyword)

Search the name and description of items for specific keywords.

Builder
scopeActive( Builder $query)

Scope of active items.

Builder
scopeEnded( Builder $query)

Scope of ended items.

Builder
scopeScheduled( Builder $query)

Scope of scheduled items.

Builder
scopeTypeAuction( Builder $query)

Scope of auction items.

Builder
scopeTypeFixed( Builder $query)

Scope of fixed-price items.

Builder
scopeWinning( Builder $query)

Scope of fixed-price items.

HasMany
bids()

Relationship to bids.

BelongsToMany
categories()

Relationship to categories.

BelongsTo
condition()

Relationship to an item condition.

HasMany
deliveryOptions()

Relationship to delivery options.

HasMany
photos()

Relationship to photos.

HasMany
purchases()

Relationship to purchases.

BelongsTo
seller()

Relationship to the user selling the item.

BelongsToMany
watchers()

Relationship to the users watching the item.

BelongsTo
winningBid()

Relationship to the winning bid.

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

Return the total number of items.

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

Return the total number of watched 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

in Model at line 84
getUrlAttribute()

in Model at line 89
getSlugAttribute()

at line 47
int getEndDate()

Return UNIX timestamp for item's end.

Return Value

int

at line 57
DateInterval getTimeLeft()

Return the time difference between now and the end of the item.

Return Value

DateInterval

at line 67
DateInterval getStartingIn()

Return the time difference between now and the start of the item.

Return Value

DateInterval

at line 77
DateInterval getDuration()

Return the time difference between 0 and the end of the duration.

Return Value

DateInterval

at line 87
float getHighestBidAmount()

Return the highest bid amount placed.

Return Value

float

at line 99
Photo getListingPhoto()

Return the primary photo.

Return Value

Photo

at line 111
Collection getBidHistory()

Return the item's bid history.

Return Value

Collection

at line 124
bool isCollectable()

Return true if item can be collected by the buyer.

Return Value

bool

at line 136
bool isBidder( User $user)

Return true if user has bid on the item.

Parameters

User $user

Return Value

bool

at line 150
bool isWinner( User $user)

Return true if user has won the item.

Parameters

User $user

Return Value

bool

at line 166
bool isBuyer( User $user)

Return true if user has ever purchased the item.

Parameters

User $user

Return Value

bool

at line 178
bool isActive()

Return true if the item is still active.

Return Value

bool

at line 188
bool isStarted()

Return true if the item has started.

Return Value

bool

at line 198
bool isEnded()

Return true if the item has ended.

Return Value

bool

at line 208
bool isReserved()

Return true if the item is has not reached a reserve price.

Return Value

bool

at line 218
bool hasFixed()

Return true if the item has a fixed price.

Return Value

bool

at line 228
bool hasQuantity()

Return true if the item has a quantity.

Return Value

bool

at line 238
bool hasReserve()

Return true if the item has a reserve price.

Return Value

bool

at line 248
bool hasBids()

Return true if the item has bids.

Return Value

bool

at line 261
void placeBid( float $amount, User $user)

Shortcut method for placing a bid.

Parameters

float $amount
User $user

Return Value

void

at line 278
void end()

End an item, marking a winning bid.

Return Value

void

at line 304
void withdraw()

Withdraw an item without marking a winning bid.

Return Value

void

at line 325
Builder scopeKeywords( Builder $query, string $keyword)

Search the name and description of items for specific keywords.

Parameters

Builder $query
string $keyword

Return Value

Builder

at line 340
Builder scopeActive( Builder $query)

Scope of active items.

Parameters

Builder $query

Return Value

Builder

at line 353
Builder scopeEnded( Builder $query)

Scope of ended items.

Parameters

Builder $query

Return Value

Builder

at line 365
Builder scopeScheduled( Builder $query)

Scope of scheduled items.

Parameters

Builder $query

Return Value

Builder

at line 377
Builder scopeTypeAuction( Builder $query)

Scope of auction items.

Parameters

Builder $query

Return Value

Builder

at line 389
Builder scopeTypeFixed( Builder $query)

Scope of fixed-price items.

Parameters

Builder $query

Return Value

Builder

at line 400
Builder scopeWinning( Builder $query)

Scope of fixed-price items.

Parameters

Builder $query

Return Value

Builder

at line 410
HasMany bids()

Relationship to bids.

Return Value

HasMany

at line 420
BelongsToMany categories()

Relationship to categories.

Return Value

BelongsToMany

at line 430
BelongsTo condition()

Relationship to an item condition.

Return Value

BelongsTo

at line 440
HasMany deliveryOptions()

Relationship to delivery options.

Return Value

HasMany

at line 450
HasMany photos()

Relationship to photos.

Return Value

HasMany

at line 460
HasMany purchases()

Relationship to purchases.

Return Value

HasMany

at line 470
BelongsTo seller()

Relationship to the user selling the item.

Return Value

BelongsTo

at line 480
BelongsToMany watchers()

Relationship to the users watching the item.

Return Value

BelongsToMany

at line 490
BelongsTo winningBid()

Relationship to the winning bid.

Return Value

BelongsTo

at line 503
static int totalListed( int $since, int $until = null)

Return the total number of 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

at line 520
static int totalWatched( int $since, int $until = null)

Return the total number of watched 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