Skip to content

Commit

Permalink
Merge pull request #168 from fey/fix/app-name
Browse files Browse the repository at this point in the history
fix default app name
  • Loading branch information
fey committed Feb 6, 2020
2 parents eaa2384 + bbeb520 commit a5e6123
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .env.example
@@ -1,4 +1,4 @@
APP_NAME=Laravel
APP_NAME="SICP Local"
APP_ENV=local
APP_KEY=
APP_DEBUG=true
Expand Down
2 changes: 1 addition & 1 deletion config/app.php
Expand Up @@ -13,7 +13,7 @@
|
*/

'name' => env('APP_NAME', 'Laravel'),
'name' => env('APP_NAME', 'Hexlet SICP'),

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion resources/views/layouts/app.blade.php
Expand Up @@ -9,7 +9,7 @@
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta name="csrf-param" content="_token" />

<title>{{ config('app.name', 'Laravel') }}</title>
<title>{{ __('layout.nav.name') }}</title>

<!-- Scripts -->
<script src="{{ asset('js/app.js') }}" defer></script>
Expand Down

0 comments on commit a5e6123

Please sign in to comment.