company->id) ->where('event_id', Webhook::EVENT_CREATE_QUOTE) ->exists(); $quote->load('client'); if ($subscriptions) { WebhookHandler::dispatch(Webhook::EVENT_CREATE_QUOTE, $quote, $quote->company); } } /** * Handle the quote "updated" event. * * @param Quote $quote * @return void */ public function updated(Quote $quote) { $subscriptions = Webhook::where('company_id', $quote->company->id) ->where('event_id', Webhook::EVENT_UPDATE_QUOTE) ->exists(); $quote->load('client'); if ($subscriptions) { WebhookHandler::dispatch(Webhook::EVENT_UPDATE_QUOTE, $quote, $quote->company); } } /** * Handle the quote "deleted" event. * * @param Quote $quote * @return void */ public function deleted(Quote $quote) { $subscriptions = Webhook::where('company_id', $quote->company->id) ->where('event_id', Webhook::EVENT_DELETE_QUOTE) ->exists(); if ($subscriptions) { WebhookHandler::dispatch(Webhook::EVENT_DELETE_QUOTE, $quote, $quote->company); } } /** * Handle the quote "restored" event. * * @param Quote $quote * @return void */ public function restored(Quote $quote) { // } /** * Handle the quote "force deleted" event. * * @param Quote $quote * @return void */ public function forceDeleted(Quote $quote) { // } }