class Label extends Model

Annotations on an image can have multiple labels. A label is e.g. the type of the object visible in the region of the annotation. So if you put a circle annotation around a rock, you would label the annotation with rock.

Labels can be ordered in a tree-like structure.

Traits

HasFactory

Properties

protected array<int,string> $hidden

The attributes hidden from the model's JSON form.

protected array<string,string> $casts

The attributes that should be casted to native types.

bool $timestamps

Don't maintain timestamps for this model.

int $id
string $uuid

Methods

Builder
scopeUsed(Builder $query)

Scope a query to used labels.

Label,$this>
parent()

The parent label if the labels are ordered in a tree-like structure.

LabelTree,$this>
tree()

The label tree this label belongs to.

Label,$this>
children()

The child labels of this label if they are ordered in a tree-like structue.

setColorAttribute(string $value)

Remove the optional '#' from a hexadecimal color.

bool
isUsed()

Determines if the label is used anywhere (e.g. attached to an annotation).

bool
canBeDeleted()

Determines if the label can be deleted.

Details

at line 58
Builder scopeUsed(Builder $query)

Scope a query to used labels.

Parameters

Builder $query

Return Value

Builder

at line 90
Label,$this> parent()

The parent label if the labels are ordered in a tree-like structure.

Return Value

Label,$this>

at line 100
LabelTree,$this> tree()

The label tree this label belongs to.

Return Value

LabelTree,$this>

at line 111
Label,$this> children()

The child labels of this label if they are ordered in a tree-like structue.

Return Value

Label,$this>

at line 121
setColorAttribute(string $value)

Remove the optional '#' from a hexadecimal color.

Parameters

string $value

The color

at line 135
bool isUsed()

Determines if the label is used anywhere (e.g. attached to an annotation).

Return Value

bool

at line 148
bool canBeDeleted()

Determines if the label can be deleted.

A label can be deleted if it doesn't have any child labels and if it is not used anywhere (e.g. attached to an annotation).

Return Value

bool