invoiceninja/app/Listeners/TaskListener.php
2016-05-01 14:31:10 +03:00

15 lines
359 B
PHP

<?php namespace App\Listeners;
use App\Models\Task;
use App\Events\InvoiceWasDeleted;
class TaskListener
{
public function deletedInvoice(InvoiceWasDeleted $event)
{
// Release any tasks associated with the deleted invoice
Task::where('invoice_id', '=', $event->invoice->id)
->update(['invoice_id' => null]);
}
}