diff --git a/config/logging.php b/config/logging.php index 5d96f103..46bb2c80 100644 --- a/config/logging.php +++ b/config/logging.php @@ -157,7 +157,7 @@ return [ 'secret' => env('AWS_CW_SECRET') ] ], - 'retention' => 31, + 'retention' => env('APP_ENV') === 'production' ? 90 : 6, 'level' => 'debug', 'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'), ], @@ -211,7 +211,7 @@ return [ 'secret' => env('AWS_CW_SECRET') ] ], - 'retention' => 31, + 'retention' => env('APP_ENV') === 'production' ? 90 : 6, 'level' => 'debug', 'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'), ], @@ -229,7 +229,7 @@ return [ 'secret' => env('AWS_CW_SECRET') ] ], - 'retention' => 31, + 'retention' => env('APP_ENV') === 'production' ? 90 : 6, 'level' => 'debug', 'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'), ], @@ -247,7 +247,7 @@ return [ 'secret' => env('AWS_CW_SECRET') ] ], - 'retention' => 31, + 'retention' => env('APP_ENV') === 'production' ? 90 : 6, 'level' => 'debug', 'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'), ], diff --git a/resources/assets/vue/components/bookings/forms/PurchaseOrderFormComponent.vue b/resources/assets/vue/components/bookings/forms/PurchaseOrderFormComponent.vue index f721851d..de4e496b 100644 --- a/resources/assets/vue/components/bookings/forms/PurchaseOrderFormComponent.vue +++ b/resources/assets/vue/components/bookings/forms/PurchaseOrderFormComponent.vue @@ -100,7 +100,7 @@