style(layouts): comment out unnecessary canonical link generation

Commented out unnecessary canonical link generation code in the app.blade.php layout file to improve readability and avoid confusion.
This commit is contained in:
Rico van Zelst
2024-03-03 18:09:00 +01:00
parent 5c0a03e753
commit 9ad6d1e091

View File

@@ -23,11 +23,11 @@
<title>@yield('title')</title>
<meta name="description" content="@yield('description')">
@if (strpos($_SERVER['REQUEST_URI'], 'page') !== false)
{{-- @if (strpos($_SERVER['REQUEST_URI'], 'page') !== false)
<link rel="canonical" href="{{ url()->full() }}">
@else
<link rel="canonical" href="{{ url()->current() }}">
@endif
@endif --}}
@stack('meta_tags')