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

Override the parent's url attribute.

getSlugAttribute()

No description

from  Model
Builder
scopeRoots( Builder $query)

Scope of categories with no parents.

Builder
scopeLeaves( Builder $query)

Scope of categories with no children.

Collection
getAncestors()

Recursively build collection of ancestor category IDs.

Collection
getDescendants()

Recursively build collection of descendant category IDs.

array
getDescendantIds()

Return array of descendant category IDs.

getItemCount()

No description

HasMany
children()

Relationship to child categories.

BelongsToMany
items()

Relationship to items.

BelongsTo
parent()

Relationship to a parent category.

static  Category|null
findBySlug( string $slug)

Find a record by the slug.

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 48
getUrlAttribute()

Override the parent's url attribute.

in Model at line 89
getSlugAttribute()

at line 66
Builder scopeRoots( Builder $query)

Scope of categories with no parents.

Parameters

Builder $query

Return Value

Builder

at line 78
Builder scopeLeaves( Builder $query)

Scope of categories with no children.

Parameters

Builder $query

Return Value

Builder

at line 88
Collection getAncestors()

Recursively build collection of ancestor category IDs.

Return Value

Collection

at line 107
Collection getDescendants()

Recursively build collection of descendant category IDs.

Return Value

Collection

at line 123
array getDescendantIds()

Return array of descendant category IDs.

Return Value

array

at line 128
getItemCount()

at line 146
HasMany children()

Relationship to child categories.

Return Value

HasMany

at line 156
BelongsToMany items()

Relationship to items.

Return Value

BelongsToMany

at line 166
BelongsTo parent()

Relationship to a parent category.

Return Value

BelongsTo

at line 178
static Category|null findBySlug( string $slug)

Find a record by the slug.

Parameters

string $slug

Return Value

Category|null