generated from boboko/starter
19 lines
567 B
PHP
19 lines
567 B
PHP
<?php
|
|||
|
|
|
||
|
|
/*
|
||
|
|
* Per-site settings for the cart + checkout module (see
|
||
|
|
* App\Providers\CheckoutModuleServiceProvider). Becomes the package's
|
||
|
|
* publishable config when the module moves to boboko-core.
|
||
|
|
*/
|
||
|
|
return [
|
||
|
|
|
||
|
|
/*
|
||
|
|
* Name of the storefront's login route. The checkout's login tab and the
|
||
|
|
* confirmation page link to it with `?redirect=<checkout path>`, so the
|
||
|
|
* login page must send the shopper back there afterwards (3dealer's
|
||
|
|
* Auth\LoginController does). null: no login offered in checkout at all.
|
||
|
|
*/
|
||
|
|
'login_route' => 'login',
|
||
|
|
|
||
|
|
];
|