mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
update
This commit is contained in:
parent
f4166bed45
commit
a201b19940
@ -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' => [
|
||||||
|
Loading…
Reference in New Issue
Block a user