diff --git a/config/logging.php b/config/logging.php
index 1f73790ca..839c5f33b 100644
--- a/config/logging.php
+++ b/config/logging.php
@@ -30,8 +30,10 @@ return [
|
*/
- 'deprecations' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
-
+ 'deprecations' => [
+ 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
+ 'trace' => false,
+ ],
/*
|--------------------------------------------------------------------------
@@ -79,22 +81,34 @@ return [
'papertrail' => [
'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'),
- 'handler' => SyslogUdpHandler::class,
+ 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
'handler_with' => [
'host' => env('PAPERTRAIL_URL'),
'port' => env('PAPERTRAIL_PORT'),
+ 'connectionString' => 'tls://'.env('PAPERTRAIL_URL') . ':' . env('PAPERTRAIL_PORT'),
],
],
'stderr' => [
'driver' => 'monolog',
- 'handler' => StreamHandler::class,
+ 'level' => env('LOG_LEVEL', 'debug'),
+ 'handler' => env('LOG_STDERR_HANDLER', SyslogUdpHandler::class),
'formatter' => env('LOG_STDERR_FORMATTER'),
'with' => [
'stream' => 'php://stderr',
],
],
+ 'stdout' => [
+ 'driver' => 'monolog',
+ 'level' => env('LOG_LEVEL', 'debug'),
+ 'handler' => env('LOG_STDOUT_HANDLER', SyslogUdpHandler::class),
+ 'formatter' => env('LOG_STDOUT_FORMATTER'),
+ 'with' => [
+ 'stream' => 'php://stdout',
+ ],
+ ],
+
'syslog' => [
'driver' => 'syslog',
'level' => env('LOG_LEVEL', 'debug'),
diff --git a/resources/lang/en-GB/portal.php b/resources/lang/en-GB/portal.php
index 6bba524ee..a0ea4a0b1 100644
--- a/resources/lang/en-GB/portal.php
+++ b/resources/lang/en-GB/portal.php
@@ -10,6 +10,7 @@ return [
'get_started' => 'Get started for free',
'billing_address' => 'Billing Address',
'see_all_details' => 'See all account details',
+ 'all_payments' => 'Login to view all payments',
'received_date' => 'Received Date',
'last_payment' => [
diff --git a/resources/views/components/documents/index/recurring_templates.blade.php b/resources/views/components/documents/index/recurring_templates.blade.php
index a4479e64c..5f4f6d6b7 100644
--- a/resources/views/components/documents/index/recurring_templates.blade.php
+++ b/resources/views/components/documents/index/recurring_templates.blade.php
@@ -41,7 +41,7 @@