'FAQ — GG.deals', ]; return view('faq', $data); } public function tutorial(string $topic): string { $tutorials = [ 'activate-steam' => ['How to activate Steam CD key', 'steam'], 'activate-gog' => ['How to activate GOG CD key', 'gog'], 'activate-epic' => ['How to activate Epic Games CD key', 'epic'], 'activate-origin' => ['How to activate Origin CD key', 'origin'], 'activate-uplay' => ['How to activate Uplay CD key', 'uplay'], 'keyshops-risks' => ['Keyshops — what to know', 'keyshops'], ]; if (! isset($tutorials[$topic])) { throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound(); } $data = [ 'pageTitle' => $tutorials[$topic][0] . ' — GG.deals', 'tutorial' => $tutorials[$topic], 'all' => $tutorials, ]; return view('tutorial', $data); } }