From 71170855127186b0f0ea2de5eff68c40c6f27896 Mon Sep 17 00:00:00 2001 From: Bruno Fontes Date: Thu, 20 May 2021 21:04:35 -0300 Subject: [PATCH] fix(email): changed command getFromJson Laravel 6.0 update had changed the command from Lang::getFromJson to Lang::get. Updated accordingly --- app/Mail/UserWaiting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Mail/UserWaiting.php b/app/Mail/UserWaiting.php index 2c4af7d..cc20cfa 100644 --- a/app/Mail/UserWaiting.php +++ b/app/Mail/UserWaiting.php @@ -35,7 +35,7 @@ class UserWaiting extends Mailable public function build() { return $this->subject( - Lang::getFromJson( + Lang::get( ':waitinguser wants to use :itemname', [ 'waitinguser' => $this->waitingUser,