wip 3d
This commit is contained in:
@@ -41,6 +41,11 @@ return [
|
||||
'provider' => 'users',
|
||||
],
|
||||
|
||||
'guest' => [
|
||||
'driver' => 'session',
|
||||
'provider' => 'guests',
|
||||
],
|
||||
|
||||
'api' => [
|
||||
'driver' => 'token',
|
||||
'provider' => 'users',
|
||||
@@ -71,6 +76,11 @@ return [
|
||||
'model' => App\User::class,
|
||||
],
|
||||
|
||||
'guests' => [
|
||||
'driver' => 'eloquent',
|
||||
'model' => App\Models\Shop\Customer::class,
|
||||
],
|
||||
|
||||
// 'users' => [
|
||||
// 'driver' => 'database',
|
||||
// 'table' => 'users',
|
||||
@@ -99,6 +109,12 @@ return [
|
||||
'expire' => 60,
|
||||
'throttle' => 60,
|
||||
],
|
||||
'guests' => [
|
||||
'provider' => 'guests',
|
||||
'table' => 'shop_customer_password_resets',
|
||||
'expire' => 60,
|
||||
'throttle' => 60,
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'password' => env('APP_KEY'),
|
||||
'encryption' => \Olssonm\BackupShield\Encryption::ENCRYPTION_DEFAULT
|
||||
|
||||
// Available encryption methods:
|
||||
// \Olssonm\BackupShield\Encryption::ENCRYPTION_DEFAULT (AES 128)
|
||||
// \Olssonm\BackupShield\Encryption::ENCRYPTION_WINZIP_AES_128 (AES 128)
|
||||
// \Olssonm\BackupShield\Encryption::ENCRYPTION_WINZIP_AES_192 (AES 192)
|
||||
// \Olssonm\BackupShield\Encryption::ENCRYPTION_WINZIP_AES_256 (AES 256)
|
||||
];
|
||||
@@ -13,5 +13,5 @@ return [
|
||||
// Backend locale
|
||||
'locale' => config('app.locale'),
|
||||
|
||||
'logs' => false,
|
||||
'logs' => true,
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user