akaunting 3.0 (the last dance)
This commit is contained in:
@@ -3,18 +3,24 @@
|
||||
namespace App\Jobs\Auth;
|
||||
|
||||
use App\Abstracts\Job;
|
||||
use App\Events\Auth\RoleDeleted;
|
||||
use App\Events\Auth\RoleDeleting;
|
||||
use App\Interfaces\Job\ShouldDelete;
|
||||
|
||||
class DeleteRole extends Job implements ShouldDelete
|
||||
{
|
||||
public function handle(): bool
|
||||
{
|
||||
event(new RoleDeleting($this->model));
|
||||
|
||||
\DB::transaction(function () {
|
||||
$this->model->delete();
|
||||
|
||||
$this->model->flushCache();
|
||||
});
|
||||
|
||||
event(new RoleDeleted($this->model));
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user