country_id == 840 && $client->company->calculate_taxes) { UpdateTaxData::dispatch($client, $client->company); } $subscriptions = Webhook::where('company_id', $client->company_id) ->where('event_id', Webhook::EVENT_CREATE_CLIENT) ->exists(); if ($subscriptions) { WebhookHandler::dispatch(Webhook::EVENT_CREATE_CLIENT, $client, $client->company)->delay(0); } } /** * Handle the client "updated" event. * * @param Client $client * @return void */ public function updated(Client $client) { if($client->getOriginal('postal_code') != $client->postal_code && $client->country_id == 840 && $client->company->calculate_taxes) { UpdateTaxData::dispatch($client, $client->company); } $event = Webhook::EVENT_UPDATE_CLIENT; if ($client->getOriginal('deleted_at') && !$client->deleted_at) { $event = Webhook::EVENT_RESTORE_CLIENT; } if ($client->is_deleted) { $event = Webhook::EVENT_DELETE_CLIENT; } $subscriptions = Webhook::where('company_id', $client->company_id) ->where('event_id', $event) ->exists(); if ($subscriptions) { WebhookHandler::dispatch($event, $client, $client->company, 'client')->delay(0); } } /** * Handle the client "archived" event. * * @param Client $client * @return void */ public function deleted(Client $client) { if ($client->is_deleted) { return; } $subscriptions = Webhook::where('company_id', $client->company_id) ->where('event_id', Webhook::EVENT_ARCHIVE_CLIENT) ->exists(); if ($subscriptions) { WebhookHandler::dispatch(Webhook::EVENT_ARCHIVE_CLIENT, $client, $client->company)->delay(0); } } }