$url, 'name' => $name, 'content' => $content, ]); foreach ((array) $categories as $category) { $tag = Tag::firstOrCreate(['tag' => $category]); $bookmark->tags()->save($tag); } ProcessBookmark::dispatch($bookmark); return $bookmark; } /** * Given a URL, attempt to save it to the Internet Archive. * * @throws InternetArchiveException */ public function getArchiveLink(string $url): string { $client = resolve(Client::class); try { $response = $client->request('GET', 'https://web.archive.org/save/' . $url); } catch (ClientException $e) { //throw an exception to be caught throw new InternetArchiveException; } if ($response->hasHeader('Content-Location')) { if (Str::startsWith(Arr::get($response->getHeader('Content-Location'), 0), '/web')) { return $response->getHeader('Content-Location')[0]; } } //throw an exception to be caught throw new InternetArchiveException; } }