diff --git a/config/logging.php b/config/logging.php index ef566d23..eabe9a64 100644 --- a/config/logging.php +++ b/config/logging.php @@ -145,7 +145,7 @@ return [ 'secret' => env('AWS_CW_SECRET') ] ], - 'retention' => 31, + 'retention' => env('APP_ENV') === 'production' ? 90 : 14, 'level' => 'debug', 'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'), ], @@ -163,7 +163,7 @@ return [ 'secret' => env('AWS_CW_SECRET') ] ], - 'retention' => 31, + 'retention' => env('APP_ENV') === 'production' ? 90 : 14, 'level' => 'debug', 'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'), ], @@ -181,7 +181,7 @@ return [ 'secret' => env('AWS_CW_SECRET') ] ], - 'retention' => 31, + 'retention' => env('APP_ENV') === 'production' ? 90 : 14, 'level' => 'debug', 'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'), ], @@ -199,7 +199,7 @@ return [ 'secret' => env('AWS_CW_SECRET') ] ], - 'retention' => 31, + 'retention' => env('APP_ENV') === 'production' ? 90 : 14, 'level' => 'debug', 'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'), ], diff --git a/resources/assets/vue/components/bookings/forms/EditPaymentRecipientBankDetailsComponent.vue b/resources/assets/vue/components/bookings/forms/EditPaymentRecipientBankDetailsComponent.vue index 4a9b81b6..6ae0edc7 100644 --- a/resources/assets/vue/components/bookings/forms/EditPaymentRecipientBankDetailsComponent.vue +++ b/resources/assets/vue/components/bookings/forms/EditPaymentRecipientBankDetailsComponent.vue @@ -76,8 +76,8 @@
- - + + diff --git a/resources/views/vendor/head.blade.php b/resources/views/vendor/head.blade.php index 22a97ead..721ff047 100644 --- a/resources/views/vendor/head.blade.php +++ b/resources/views/vendor/head.blade.php @@ -13,7 +13,7 @@ - + diff --git a/routes/web.php b/routes/web.php index 3e8f3d64..e206a675 100644 --- a/routes/web.php +++ b/routes/web.php @@ -1246,3 +1246,13 @@ Route::get('/downloads', function () { return view('pages.downloads.index'); })->name('admin.download'); +Route::get('/site.webmanifest', function () { + $filePath = resource_path('assets/images/favicon/site.webmanifest'); + + if (!File::exists($filePath)) { + abort(404); + } + + $contents = File::get($filePath); + return response($contents, 200)->header('Content-Type', 'application/manifest+json'); +});