get(); } public static function getBidsByRole($role) { return self::where('role',$role)->select('bid')->get()->pluck('bid')->all(); } public static function getById($id){ return self::where('id',$id)->first(); } }