mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 17:31:49 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			77 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Controllers\Admin;
 | |
| 
 | |
| use App\Http\Requests\Admin\TutorialSave;
 | |
| use Illuminate\Http\Request;
 | |
| use App\Http\Controllers\Controller;
 | |
| use App\Models\Tutorial;
 | |
| 
 | |
| class TutorialController extends Controller
 | |
| {
 | |
|     public function fetch(Request $request)
 | |
|     {
 | |
|         return response([
 | |
|             'data' => Tutorial::get()
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function save(TutorialSave $request)
 | |
|     {
 | |
|         $params = $request->only(array_keys(TutorialSave::RULES));
 | |
| 
 | |
|         if (!$request->input('id')) {
 | |
|             if (!Tutorial::create($params)) {
 | |
|                 abort(500, '创建失败');
 | |
|             }
 | |
|         } else {
 | |
|             try {
 | |
|                 Tutorial::find($request->input('id'))->update($params);
 | |
|             } catch (\Exception $e) {
 | |
|                 abort(500, '保存失败');
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         return response([
 | |
|             'data' => true
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function show(Request $request)
 | |
|     {
 | |
|         if (empty($request->input('id'))) {
 | |
|             abort(500, '参数有误');
 | |
|         }
 | |
|         $tutorial = Tutorial::find($request->input('id'));
 | |
|         if (!$tutorial) {
 | |
|             abort(500, '教程不存在');
 | |
|         }
 | |
|         $tutorial->show = $tutorial->show ? 0 : 1;
 | |
|         if (!$tutorial->save()) {
 | |
|             abort(500, '保存失败');
 | |
|         }
 | |
| 
 | |
|         return response([
 | |
|             'data' => true
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function drop(Request $request)
 | |
|     {
 | |
|         if (empty($request->input('id'))) {
 | |
|             abort(500, '参数有误');
 | |
|         }
 | |
|         $tutorial = Tutorial::find($request->input('id'));
 | |
|         if (!$tutorial) {
 | |
|             abort(500, '教程不存在');
 | |
|         }
 | |
|         if (!$tutorial->delete()) {
 | |
|             abort(500, '删除失败');
 | |
|         }
 | |
| 
 | |
|         return response([
 | |
|             'data' => true
 | |
|         ]);
 | |
|     }
 | |
| }
 |