class Photo extends NonSequentialIdModel (View source)

Traits

EloquentJoins\ModelTrait

Properties

bool $timestamps Indicates if the model should be timestamped. from  Model
bool $incrementing Indicates if the IDs are auto-incrementing. from  NonSequentialIdModel

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( string $suffix = '')

Return the public URL for the photo.

getSlugAttribute()

No description

from  Model
string
getPathAttribute( string $suffix = '')

Return the filesystem path for the photo.

string
getPathSmallAttribute()

Return the filesystem path for the photo's small version.

string
getPathLargeAttribute()

Return the filesystem path for the photo's large version.

string
getUrlSmallAttribute()

Return the public URL for the photo's large version.

string
getUrlLargeAttribute()

Return the public URL for the photo's large version.

void
delete()

Delete the record and data from the filesystem.

BelongsTo
item()

Relationship to an item.

static  Photo
upload( string $file)

Process a photo and create a record.

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 94
getUrlAttribute( string $suffix = '')

Return the public URL for the photo.

Parameters

string $suffix

in Model at line 89
getSlugAttribute()

at line 54
string getPathAttribute( string $suffix = '')

Return the filesystem path for the photo.

Parameters

string $suffix

Return Value

string

at line 72
string getPathSmallAttribute()

Return the filesystem path for the photo's small version.

Return Value

string

at line 82
string getPathLargeAttribute()

Return the filesystem path for the photo's large version.

Return Value

string

at line 118
string getUrlSmallAttribute()

Return the public URL for the photo's large version.

Return Value

string

at line 128
string getUrlLargeAttribute()

Return the public URL for the photo's large version.

Return Value

string

at line 138
void delete()

Delete the record and data from the filesystem.

Return Value

void

at line 154
BelongsTo item()

Relationship to an item.

Return Value

BelongsTo

at line 192
static Photo upload( string $file)

Process a photo and create a record.

Parameters

string $file

Return Value

Photo