akaunting 3.0 (the last dance)
This commit is contained in:
@ -3,6 +3,8 @@
|
||||
namespace App\Jobs\Auth;
|
||||
|
||||
use App\Abstracts\Job;
|
||||
use App\Events\Auth\RoleCreated;
|
||||
use App\Events\Auth\RoleCreating;
|
||||
use App\Interfaces\Job\HasOwner;
|
||||
use App\Interfaces\Job\HasSource;
|
||||
use App\Interfaces\Job\ShouldCreate;
|
||||
@ -12,6 +14,8 @@ class CreateRole extends Job implements HasOwner, HasSource, ShouldCreate
|
||||
{
|
||||
public function handle(): Role
|
||||
{
|
||||
event(new RoleCreating($this->request));
|
||||
|
||||
\DB::transaction(function () {
|
||||
$this->model = Role::create($this->request->input());
|
||||
|
||||
@ -20,6 +24,8 @@ class CreateRole extends Job implements HasOwner, HasSource, ShouldCreate
|
||||
}
|
||||
});
|
||||
|
||||
event(new RoleCreated($this->model, $this->request));
|
||||
|
||||
return $this->model;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user