32 public function redirect(
string $code): View|RedirectResponse|Response
34 $shortUrl = ShortUrl::withTrashed()
35 ->where(
'code', $code)
42 if ($shortUrl->trashed()) {
43 return response()->view(
'shorturls.deleted', compact(
'shortUrl'), 410);
46 return redirect()->away($shortUrl->original_url);