Skip to content

Commit

Permalink
Use app.name from config instead of APP_NAME env var
Browse files Browse the repository at this point in the history
  • Loading branch information
PatBriPerso committed Sep 25, 2024
1 parent 6e2307c commit 133cf5d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">

<title>{{ env('APP_NAME') }}</title>
<title>{{ config('app.name') }}</title>

<!-- Fonts -->
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
Expand Down Expand Up @@ -62,7 +62,7 @@
<img src="{{ asset('images/logo.png') }}" alt="Cywise's logo">
</div>
<div class="text">
{{ env('APP_NAME') }}
{{ config('app.name') }}
</div>
</div>
</a>
Expand Down
4 changes: 2 additions & 2 deletions resources/views/welcome.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>{{ env('APP_NAME') }}</title>
<title>{{ config('app.name') }}</title>

<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Nunito:200,600" rel="stylesheet" type="text/css">
Expand Down Expand Up @@ -102,7 +102,7 @@
<img src="{{ asset('images/logo.png') }}" alt="Cywise's logo">
</div>
<div class="text">
{{ env('APP_NAME') }}
{{ config('app.name') }}
</div>
</div>
</div>
Expand Down

0 comments on commit 133cf5d

Please sign in to comment.