'integer', 'lat' => 'float', 'lon' => 'float', 'freq' => 'float', ]; /** * Make sure the ID is in all caps * * @return Attribute */ public function id(): Attribute { return Attribute::make( set: fn ($id) => strtoupper($id) ); } }