Photo
class Photo extends NonSequentialIdModel (View source)
Traits
Properties
bool | $timestamps | Indicates if the model should be timestamped. | from Model |
bool | $incrementing | Indicates if the IDs are auto-incrementing. | from NonSequentialIdModel |
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.
Return the public URL for the photo.
Return the filesystem path for the photo.
Return the filesystem path for the photo's small version.
Return the filesystem path for the photo's large version.
Return the public URL for the photo's large version.
Return the public URL for the photo's large version.
Delete the record and data from the filesystem.
Relationship to an item.
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 94
getUrlAttribute(
string $suffix = '')
Return the public URL for the photo.
in
Model at line 89
getSlugAttribute()
at line 54
string
getPathAttribute(
string $suffix = '')
Return the filesystem path for the photo.
at line 72
string
getPathSmallAttribute()
Return the filesystem path for the photo's small version.
at line 82
string
getPathLargeAttribute()
Return the filesystem path for the photo's large version.
at line 118
string
getUrlSmallAttribute()
Return the public URL for the photo's large version.
at line 128
string
getUrlLargeAttribute()
Return the public URL for the photo's large version.
at line 138
void
delete()
Delete the record and data from the filesystem.
at line 154
BelongsTo
item()
Relationship to an item.
at line 192
static
Photo
upload(
string $file)
Process a photo and create a record.