feat: harden billing verification and add browse route parity
This commit is contained in:
@@ -3,7 +3,16 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
@php
|
||||
$canonicalPath = $canonicalPath ?? request()->getPathInfo();
|
||||
$canonicalPath = $canonicalPath === '' ? '/' : $canonicalPath;
|
||||
if ($canonicalPath !== '/') {
|
||||
$canonicalPath = '/'.trim($canonicalPath, '/');
|
||||
}
|
||||
$canonicalUrl = rtrim(config('app.url', request()->getSchemeAndHttpHost()), '/').$canonicalPath;
|
||||
@endphp
|
||||
<title>@yield('title', 'Dewemoji')</title>
|
||||
<link rel="canonical" href="{{ $canonicalUrl }}">
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
||||
Reference in New Issue
Block a user