class Purchase 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
boolean
isPaid()

Returns true if payment has been received.

boolean
isDispatched()

Returns true if purchase has been dispatched.

boolean
isRefunded()

Returns true if payment has been refunded.

boolean
hasDelivery()

Returns true if purchase has a delivery option.

boolean
hasAddress()

Returns true if purchase has an address.

float
getGrandTotalAttribute()

Calculate grand total in respect to quantity and delivery.

float
getNetTotalAttribute()

Calculate grand total with commission deducted.

float
getGrandTotalRemainingAttribute()

Calculate grand total in respect of any received sum.

void
useAddress( PostalAddress $postalAddress)

Mass-assignment method for using a postal address.

BelongsTo
deliveryOption()

Relationship to a delivery option.

HasOne
feedback()

Relationship to a feedback rating.

BelongsTo
item()

Relationship to an item.

BelongsTo
buyer()

Relationship to a purchasing user.

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

Return the total number of purchases.

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

Return the average amount of purchases.

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
boolean isPaid()

Returns true if payment has been received.

Return Value

boolean

at line 55
boolean isDispatched()

Returns true if purchase has been dispatched.

Return Value

boolean

at line 65
boolean isRefunded()

Returns true if payment has been refunded.

Return Value

boolean

at line 75
boolean hasDelivery()

Returns true if purchase has a delivery option.

Return Value

boolean

at line 85
boolean hasAddress()

Returns true if purchase has an address.

Return Value

boolean

at line 95
float getGrandTotalAttribute()

Calculate grand total in respect to quantity and delivery.

Return Value

float

at line 107
float getNetTotalAttribute()

Calculate grand total with commission deducted.

Return Value

float

at line 117
float getGrandTotalRemainingAttribute()

Calculate grand total in respect of any received sum.

Return Value

float

at line 128
void useAddress( PostalAddress $postalAddress)

Mass-assignment method for using a postal address.

Parameters

PostalAddress $postalAddress

Return Value

void

at line 144
BelongsTo deliveryOption()

Relationship to a delivery option.

Return Value

BelongsTo

at line 154
HasOne feedback()

Relationship to a feedback rating.

Return Value

HasOne

at line 164
BelongsTo item()

Relationship to an item.

Return Value

BelongsTo

at line 174
BelongsTo buyer()

Relationship to a purchasing user.

Return Value

BelongsTo

at line 186
static integer totalCreated( integer $since, integer $until = null)

Return the total number of purchases.

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 202
static integer averageAmount( integer $since, integer $until = null)

Return the average amount of purchases.

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