setPageTitle(trans('settings.users_api_tokens_docs')); return view('api-docs.index', [ 'docs' => $docs, ]); } /** * Show a JSON view of the API docs data. */ public function json() { $docs = ApiDocsGenerator::generateConsideringCache(); return response()->json($docs); } }