/** * Get all device types ordered by the specified column. * @param String $column A column from a database table. * @return Collection Collection of device types. */ public function orderBy($column) { return \App\DeviceType::orderBy($column)->get(); }