We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b009f1 commit 11152ffCopy full SHA for 11152ff
resources/views/article.blade.php
@@ -1,4 +1,4 @@
1
-<x-layout title="Blog">
+<x-layout title="{{ $article->title }} - Blog">
2
{{-- Hero --}}
3
<section
4
class="mx-auto mt-10 w-full max-w-5xl"
resources/views/components/layout.blade.php
@@ -56,7 +56,7 @@
56
@endphp
57
58
@if ($seoTitle === $defaultSeoTitle || empty($seoTitle))
59
- <title>NativePHP{{ isset($title) ? ' | ' . $title : '' }}</title>
+ <title>{{ isset($title) ? $title . ' - ' : '' }}NativePHP</title>
60
@endif
61
62
{{-- Favicon --}}
resources/views/partners.blade.php
-<x-layout>
+<x-layout title="Join our Partner Program">
<div class="mx-auto max-w-5xl">
{{-- Hero Section --}}
<section class="mt-12">
0 commit comments