2021-09-04 15:35:43 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Jobs\Common;
|
|
|
|
|
|
|
|
use App\Abstracts\Job;
|
2021-09-06 11:53:57 +03:00
|
|
|
use App\Interfaces\Job\ShouldDelete;
|
2021-09-04 15:35:43 +03:00
|
|
|
|
2021-09-06 11:53:57 +03:00
|
|
|
class DeleteWidget extends Job implements ShouldDelete
|
2021-09-04 15:35:43 +03:00
|
|
|
{
|
2021-09-06 11:53:57 +03:00
|
|
|
public function handle(): bool
|
2021-09-04 15:35:43 +03:00
|
|
|
{
|
|
|
|
\DB::transaction(function () {
|
2021-09-06 11:53:57 +03:00
|
|
|
$this->model->delete();
|
2021-09-04 15:35:43 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|