Filters collapsed, customer auth and register, fix on basket recalculation

This commit is contained in:
Ludovic CANDELLIER
2022-04-20 00:16:16 +02:00
parent 483aa59750
commit 6837954fc9
31 changed files with 218 additions and 251 deletions

View File

@@ -46,6 +46,11 @@ return [
'provider' => 'guests',
],
'customer' => [
'driver' => 'session',
'provider' => 'customers',
],
'api' => [
'driver' => 'token',
'provider' => 'users',
@@ -81,6 +86,11 @@ return [
'model' => App\Models\Shop\Customer::class,
],
'customers' => [
'driver' => 'eloquent',
'model' => App\Models\Shop\Customer::class,
],
// 'users' => [
// 'driver' => 'database',
// 'table' => 'users',
@@ -115,6 +125,12 @@ return [
'expire' => 60,
'throttle' => 60,
],
'customers' => [
'provider' => 'customers',
'table' => 'shop_customer_password_resets',
'expire' => 60,
'throttle' => 60,
],
],
/*