Purchase
class Purchase extends Model (View source)
Traits
Properties
bool | $timestamps | Indicates if the model should be timestamped. | from Model |
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.
Returns true if payment has been received.
Returns true if purchase has been dispatched.
Returns true if payment has been refunded.
Returns true if purchase has a delivery option.
Returns true if purchase has an address.
Calculate grand total in respect to quantity and delivery.
Calculate grand total with commission deducted.
Calculate grand total in respect of any received sum.
Mass-assignment method for using a postal address.
Relationship to a delivery option.
Relationship to a feedback rating.
Relationship to an item.
Relationship to a purchasing user.
Return the total number of purchases.
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.
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.
in
Model at line 84
getUrlAttribute()
in
Model at line 89
getSlugAttribute()
at line 45
boolean
isPaid()
Returns true if payment has been received.
at line 55
boolean
isDispatched()
Returns true if purchase has been dispatched.
at line 65
boolean
isRefunded()
Returns true if payment has been refunded.
at line 75
boolean
hasDelivery()
Returns true if purchase has a delivery option.
at line 85
boolean
hasAddress()
Returns true if purchase has an address.
at line 95
float
getGrandTotalAttribute()
Calculate grand total in respect to quantity and delivery.
at line 107
float
getNetTotalAttribute()
Calculate grand total with commission deducted.
at line 117
float
getGrandTotalRemainingAttribute()
Calculate grand total in respect of any received sum.
at line 128
void
useAddress(
PostalAddress $postalAddress)
Mass-assignment method for using a postal address.
at line 144
BelongsTo
deliveryOption()
Relationship to a delivery option.
at line 154
HasOne
feedback()
Relationship to a feedback rating.
at line 164
BelongsTo
item()
Relationship to an item.
at line 174
BelongsTo
buyer()
Relationship to a purchasing user.
at line 186
static
integer
totalCreated(
integer $since,
integer $until = null)
Return the total number of purchases.
at line 202
static
integer
averageAmount(
integer $since,
integer $until = null)
Return the average amount of purchases.