update tutorial

This commit is contained in:
Tokumeikoi 2020-02-19 14:31:02 +08:00
parent 61b31c1925
commit 5154993887
2 changed files with 3 additions and 4 deletions

View File

@ -49,9 +49,10 @@ class TutorialController extends Controller
'data' => $tutorial
]);
}
$tutorial = Tutorial::select(['id', 'title', 'description', 'icon'])
$tutorial = Tutorial::select(['id', 'title', 'icon'])
->where('show', 1)
->get();
->get()
->groupBy('category');
$user = User::find($request->session()->get('id'));
$response = [
'data' => [

View File

@ -10,7 +10,6 @@ class TutorialSave extends FormRequest
'title' => 'required',
// 1:windows 2:macos 3:ios 4:android 5:linux 6:router
'category_id' => 'required|in:1,2,3,4,5,6',
'description' => 'required',
'icon' => 'required'
];
/**
@ -29,7 +28,6 @@ class TutorialSave extends FormRequest
'title.required' => '标题不能为空',
'category_id.required' => '分类不能为空',
'category_id.in' => '分类格式不正确',
'description.required' => '描述不能为空',
'icon.required' => '图标不能为空'
];
}