This commit is contained in:
root 2020-01-02 22:05:27 +08:00
parent f4166bed45
commit a201b19940

View File

@ -35,7 +35,20 @@ class TutorialController extends Controller
} }
public function fetch (Request $request) { public function fetch (Request $request) {
$tutorial = Tutorial::select(['id', 'title', 'description', 'icon'])->get(); if ($request->input('id')) {
$tutorial = Tutorial::where('show', 1)
->where('id', $request->input('id'))
->first();
if (!$tutorial) {
abort(500, '教程不存在');
}
return response([
'data' => $tutorial
]);
}
$tutorial = Tutorial::select(['id', 'title', 'description', 'icon'])
->where('show', 1)
->get();
$user = User::find($request->session()->get('id')); $user = User::find($request->session()->get('id'));
$response = [ $response = [
'data' => [ 'data' => [