role = $role; } /** * Execute the job. * * @return boolean|Exception */ public function handle() { \DB::transaction(function () { $this->role->delete(); $this->role->flushCache(); }); return true; } }