Category
class Category 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.
Override the parent's url attribute.
Scope of categories with no parents.
Scope of categories with no children.
Recursively build collection of ancestor category IDs.
Recursively build collection of descendant category IDs.
Return array of descendant category IDs.
No description
Relationship to child categories.
Relationship to items.
Relationship to a parent category.
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.
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.
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.
at line 78
Builder
scopeLeaves(
Builder $query)
Scope of categories with no children.
at line 88
Collection
getAncestors()
Recursively build collection of ancestor category IDs.
at line 107
Collection
getDescendants()
Recursively build collection of descendant category IDs.
at line 123
array
getDescendantIds()
Return array of descendant category IDs.
at line 128
getItemCount()
at line 146
HasMany
children()
Relationship to child categories.
at line 156
BelongsToMany
items()
Relationship to items.
at line 166
BelongsTo
parent()
Relationship to a parent category.
at line 178
static
Category|null
findBySlug(
string $slug)
Find a record by the slug.