Skip to content

Commit 07ff80a

Browse files
authored
fix(head) fallback to app name instead of hardcoded Laravel in site title (#75)
1 parent b4afe8d commit 07ff80a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/partials/head.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<meta charset="utf-8" />
22
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
33

4-
<title>{{ $title ?? 'Laravel' }}</title>
4+
<title>{{ $title ?? config('app.name') }}</title>
55

66
<link rel="preconnect" href="https://fonts.bunny.net">
77
<link href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600" rel="stylesheet" />

0 commit comments

Comments
 (0)