get('name'); if ($name) { $where[] = ['name', 'like', '%' . $name . '%']; } $classify = $request->get('classify','all'); if ($classify != 'all') { $where[] = ['classify', '=', $classify]; } $PluginShortplayStyle = PluginShortplayStyle::where($where)->order('id', 'desc')->select(); return $this->resData($PluginShortplayStyle); } }