all()); $list = $query->get(); return $this->json(KeywordResource::collection($list)); } public function show($key) { $info = Keywords::where(fn($q) => $q->where('key', $key)->orWhere('id', $key))->firstOrFail(); return $this->json(KeywordResource::make($info)); } }