akaunting/app/Jobs/Banking/DeleteTransfer.php
2020-06-26 13:40:19 +03:00

37 lines
650 B
PHP

<?php
namespace App\Jobs\Banking;
use App\Abstracts\Job;
class DeleteTransfer extends Job
{
protected $transfer;
/**
* Create a new job instance.
*
* @param $transfer
*/
public function __construct($transfer)
{
$this->transfer = $transfer;
}
/**
* Execute the job.
*
* @return boolean|Exception
*/
public function handle()
{
\DB::transaction(function () {
$this->transfer->expense_transaction->delete();
$this->transfer->income_transaction->delete();
$this->transfer->delete();
});
return true;
}
}