diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php index 527eee34..540d17b4 100644 --- a/app/Providers/RouteServiceProvider.php +++ b/app/Providers/RouteServiceProvider.php @@ -59,8 +59,8 @@ class RouteServiceProvider extends ServiceProvider protected function mapWebRoutes() { Route::middleware('web') - ->namespace($this->namespace) - ->group(base_path('routes/web.php')); + ->namespace($this->namespace) + ->group(base_path('routes/web.php')); } /** @@ -73,8 +73,8 @@ class RouteServiceProvider extends ServiceProvider protected function mapApiRoutes() { Route::prefix('api') - ->middleware('api') - ->namespace($this->namespace) - ->group(base_path('routes/api.php')); + ->middleware('api') + ->namespace($this->namespace) + ->group(base_path('routes/api.php')); } } diff --git a/config/cors.php b/config/cors.php index 5c9de897..558369dc 100644 --- a/config/cors.php +++ b/config/cors.php @@ -25,9 +25,9 @@ return [ 'allowed_headers' => ['*'], - 'exposed_headers' => false, + 'exposed_headers' => [], - 'max_age' => false, + 'max_age' => 0, 'supports_credentials' => false, diff --git a/config/queue.php b/config/queue.php index 3a30d6c6..00b76d65 100644 --- a/config/queue.php +++ b/config/queue.php @@ -55,6 +55,7 @@ return [ 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), 'queue' => env('SQS_QUEUE', 'your-queue-name'), + 'suffix' => env('SQS_SUFFIX'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), ], diff --git a/config/session.php b/config/session.php index bc9174f4..d0ccd5a8 100644 --- a/config/session.php +++ b/config/session.php @@ -166,7 +166,7 @@ return [ | */ - 'secure' => env('SESSION_SECURE_COOKIE', null), + 'secure' => env('SESSION_SECURE_COOKIE'), /* |-------------------------------------------------------------------------- @@ -190,7 +190,7 @@ return [ | take place, and can be used to mitigate CSRF attacks. By default, we | do not enable this as other CSRF protection services are in place. | - | Supported: "lax", "strict", "none" + | Supported: "lax", "strict", "none", null | */ diff --git a/config/view.php b/config/view.php index bc73d32b..22b8a18d 100644 --- a/config/view.php +++ b/config/view.php @@ -33,17 +33,4 @@ return [ realpath(storage_path('framework/views')) ), - /* - |-------------------------------------------------------------------------- - | Blade View Modification Checking - |-------------------------------------------------------------------------- - | - | On every request the framework will check to see if a view has expired - | to determine if it needs to be recompiled. If you are in production - | and precompiling views this feature may be disabled to save time. - | - */ - - 'expires' => env('VIEW_CHECK_EXPIRATION', true), - ];