We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 618765b commit 9b40ac2Copy full SHA for 9b40ac2
config/stagefront.php
@@ -36,15 +36,15 @@
36
37
/**
38
* The password to use. You can set it in plain text,
39
- * or use bcrypt('my-secret') to generate an encrypted value.
+ * or use \Hash::make('my-secret') to generate an encrypted value.
40
*
41
* Default: 'stagefront' (change this!)
42
*/
43
'password' => env('STAGEFRONT_PASSWORD', 'stagefront'),
44
45
46
* Are you using an encrypted password?
47
- * Set this to true and use bcrypt('my-secret') to generate an encrypted value.
+ * Set this to true and use \Hash::make('my-secret') to generate an encrypted value.
48
* Or set this to false and use a plain text password.
49
50
* Default: false
0 commit comments