From 0d5ad8a24a7844b740504b5cf4e3d451cb8da017 Mon Sep 17 00:00:00 2001 From: merdan Date: Fri, 15 May 2020 12:22:05 +0500 Subject: [PATCH] payment responce errorMessage bug fix --- app/Notifications/TicketCommented.php | 2 ++ app/Notifications/TicketReceived.php | 2 +- app/Notifications/UserResetPassword.php | 1 + resources/views/Shared/Partials/FilterMenu.blade.php | 2 +- 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/app/Notifications/TicketCommented.php b/app/Notifications/TicketCommented.php index 8ccdc909..825ba58d 100644 --- a/app/Notifications/TicketCommented.php +++ b/app/Notifications/TicketCommented.php @@ -19,6 +19,8 @@ class TicketCommented extends Notification implements ShouldQueue */ protected $comment; + public $tries = 2; + public function __construct(HelpTicketComment $comment) { $this->comment = $comment; diff --git a/app/Notifications/TicketReceived.php b/app/Notifications/TicketReceived.php index 95bd8758..0b37a563 100644 --- a/app/Notifications/TicketReceived.php +++ b/app/Notifications/TicketReceived.php @@ -24,7 +24,7 @@ class TicketReceived extends Notification implements ShouldQueue * * @var int */ - public $maxExceptions = 3; + public $tries = 2; protected $ticket; diff --git a/app/Notifications/UserResetPassword.php b/app/Notifications/UserResetPassword.php index 6e39ba0f..e648e70b 100644 --- a/app/Notifications/UserResetPassword.php +++ b/app/Notifications/UserResetPassword.php @@ -13,6 +13,7 @@ class UserResetPassword extends Notification implements ShouldQueue private $token; + public $tries = 2; /** * UserResetPassword constructor. * @param $token diff --git a/resources/views/Shared/Partials/FilterMenu.blade.php b/resources/views/Shared/Partials/FilterMenu.blade.php index 56df60eb..f80d407a 100644 --- a/resources/views/Shared/Partials/FilterMenu.blade.php +++ b/resources/views/Shared/Partials/FilterMenu.blade.php @@ -50,4 +50,4 @@ }); }); - @endpush +@endpush