9 lines
228 B
Plaintext
9 lines
228 B
Plaintext
|
|
public function get{%field%}Attr($value): array
|
|
{
|
|
if ($value === '' || $value === null) return [];
|
|
if (!is_array($value)) {
|
|
return explode(',', $value);
|
|
}
|
|
return $value;
|
|
} |