mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 09:21:46 +08:00 
			
		
		
		
	support clash x
This commit is contained in:
		| @@ -3,6 +3,7 @@ | ||||
| namespace App\Http\Controllers\Admin; | ||||
|  | ||||
| use App\Http\Requests\Admin\ServerSave; | ||||
| use App\Http\Requests\Admin\ServerUpdate; | ||||
| use Illuminate\Http\Request; | ||||
| use App\Http\Controllers\Controller; | ||||
| use App\Models\ServerGroup; | ||||
| @@ -120,4 +121,22 @@ class ServerController extends Controller | ||||
|             'data' => $server->delete() | ||||
|         ]); | ||||
|     } | ||||
|  | ||||
|     public function update (ServerUpdate $request) { | ||||
|         $updateData = $request->only([ | ||||
|             'show', | ||||
|         ]); | ||||
|          | ||||
|         $server = Server::find($request->input('id')); | ||||
|         if (!$server) { | ||||
|             abort(500, '该服务器不存在'); | ||||
|         } | ||||
|         if (!$server->update($updateData)) { | ||||
|             abort(500, '保存失败'); | ||||
|         } | ||||
|  | ||||
|         return response([ | ||||
|             'data' => true | ||||
|         ]); | ||||
|     } | ||||
| } | ||||
|   | ||||
							
								
								
									
										28
									
								
								app/Http/Requests/Admin/ServerUpdate.php
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										28
									
								
								app/Http/Requests/Admin/ServerUpdate.php
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,28 @@ | ||||
| <?php | ||||
|  | ||||
| namespace App\Http\Requests\Admin; | ||||
|  | ||||
| use Illuminate\Foundation\Http\FormRequest; | ||||
|  | ||||
| class ServerUpdate extends FormRequest | ||||
| { | ||||
|     /** | ||||
|      * Get the validation rules that apply to the request. | ||||
|      * | ||||
|      * @return array | ||||
|      */ | ||||
|      | ||||
|     public function rules() | ||||
|     { | ||||
|         return [ | ||||
|             'show' => 'in:0,1' | ||||
|         ]; | ||||
|     } | ||||
|      | ||||
|     public function messages() | ||||
|     { | ||||
|         return [ | ||||
|             'show.in' => '显示状态格式不正确' | ||||
|         ]; | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user