company->id) ->where('event_id', Webhook::EVENT_CREATE_TASK) ->exists(); if ($subscriptions) { WebhookHandler::dispatch(Webhook::EVENT_CREATE_TASK, $task, $task->company)->delay(now()->addSeconds(2)); } } /** * Handle the task "updated" event. * * @param Task $task * @return void */ public function updated(Task $task) { $subscriptions = Webhook::where('company_id', $task->company->id) ->where('event_id', Webhook::EVENT_UPDATE_TASK) ->exists(); if ($subscriptions) { WebhookHandler::dispatch(Webhook::EVENT_UPDATE_TASK, $task, $task->company)->delay(now()->addSeconds(2)); } } /** * Handle the task "deleted" event. * * @param Task $task * @return void */ public function deleted(Task $task) { $subscriptions = Webhook::where('company_id', $task->company->id) ->where('event_id', Webhook::EVENT_DELETE_TASK) ->exists(); if ($subscriptions) { WebhookHandler::dispatch(Webhook::EVENT_DELETE_TASK, $task, $task->company)->delay(now()->addSeconds(2)); } } /** * Handle the task "restored" event. * * @param Task $task * @return void */ public function restored(Task $task) { // } /** * Handle the task "force deleted" event. * * @param Task $task * @return void */ public function forceDeleted(Task $task) { // } }