fix(email): changed command getFromJson

Laravel 6.0 update had changed the command from Lang::getFromJson to
Lang::get. Updated accordingly
This commit is contained in:
Bruno F. Fontes 2021-05-20 21:04:35 -03:00
parent 54efb095fe
commit 7117085512

View File

@ -35,7 +35,7 @@ class UserWaiting extends Mailable
public function build() public function build()
{ {
return $this->subject( return $this->subject(
Lang::getFromJson( Lang::get(
':waitinguser wants to use :itemname', ':waitinguser wants to use :itemname',
[ [
'waitinguser' => $this->waitingUser, 'waitinguser' => $this->waitingUser,