null, "ancho" => null, "alto" => null, "unidades" => null, "orientacion" => null, "maquina" => null, "etiqueta" => null, ]; protected $casts = [ "ancho" => "int", "alto" => "int", "unidades" => "?int", ]; public function getFullName() : string { $ancho_x_alto = $this->attributes["ancho"] ."x". $this->attributes["alto"]; $unidades = $this->attributes["unidades"] ?? ""; $orientacion = $this->attributes["orientacion"] ?? ""; return implode("_",[$ancho_x_alto,$unidades,$orientacion]); } }