Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use the App Name for Pulse dashboard header & browser title instead #384

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions resources/views/components/pulse.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title inertia>Laravel Pulse</title>
<title inertia>{{ config('app.name') }} Pulse</title>

<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
Expand Down Expand Up @@ -34,7 +34,7 @@
</linearGradient>
</defs>
</svg>
<span class="ml-2 text-lg sm:text-2xl text-gray-700 dark:text-gray-300 font-medium"><b class="font-bold">Laravel</b> Pulse</span>
<span class="ml-2 text-lg sm:text-2xl text-gray-700 dark:text-gray-300 font-medium"><b class="font-bold">{{ config('app.name') }}</b> Pulse</span>
</div>
<div class="flex items-center gap-3 sm:gap-6">
<livewire:pulse.period-selector />
Expand Down