company_id) ->where('event_id', Webhook::EVENT_CREATE_INVOICE) ->exists(); if ($subscriptions) { WebhookHandler::dispatch(Webhook::EVENT_CREATE_INVOICE, $invoice, $invoice->company, 'client')->delay(now()->addSeconds(rand(1,5))); } } /** * Handle the client "updated" event. * * @param Invoice $invoice * @return void */ public function updated(Invoice $invoice) { $subscriptions = Webhook::where('company_id', $invoice->company_id) ->where('event_id', Webhook::EVENT_UPDATE_INVOICE) ->exists(); if ($subscriptions) { WebhookHandler::dispatch(Webhook::EVENT_UPDATE_INVOICE, $invoice, $invoice->company, 'client')->delay(now()->addSeconds(rand(1,5))); } } /** * Handle the client "deleted" event. * * @param Invoice $invoice * @return void */ public function deleted(Invoice $invoice) { $subscriptions = Webhook::where('company_id', $invoice->company_id) ->where('event_id', Webhook::EVENT_DELETE_INVOICE) ->exists(); if ($subscriptions) { WebhookHandler::dispatch(Webhook::EVENT_DELETE_INVOICE, $invoice, $invoice->company, 'client')->delay(now()->addSeconds(rand(1,5))); } } /** * Handle the client "restored" event. * * @param Invoice $invoice * @return void */ public function restored(Invoice $invoice) { // } /** * Handle the client "force deleted" event. * * @param Invoice $invoice * @return void */ public function forceDeleted(Invoice $invoice) { // } }