Skip to content

Commit cfb8c07

Browse files
authored
Merge pull request #4589 from Laravel-Backpack/fix-env-not-found-bug
use APP_ENV instead of app()->env in show_getting_started
2 parents 9b3f801 + 15366c8 commit cfb8c07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config/backpack/base.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
// ---------
4242

4343
// Show "Getting Started with Backpack" info block?
44-
'show_getting_started' => (app()->env == 'local'),
44+
'show_getting_started' => env('APP_ENV') == 'local',
4545

4646
// ------
4747
// STYLES

0 commit comments

Comments
 (0)