improved tenant identification

This commit is contained in:
Denis Duliçi
2021-04-16 00:59:43 +03:00
parent 9635e6be5d
commit 2b07442260
126 changed files with 1719 additions and 999 deletions

View File

@ -0,0 +1,36 @@
<?php
namespace App\Jobs\Auth;
use App\Abstracts\JobShouldQueue;
class NotifyUser extends JobShouldQueue
{
protected $user;
protected $notification;
/**
* Create a new job instance.
*
* @param $user
* @param $notification
*/
public function __construct($user, $notification)
{
$this->user = $user;
$this->notification = $notification;
$this->onQueue('jobs');
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$this->user->notify($this->notification);
}
}