отключил уведомление об изменении договора для пользователя, оставил только в договорах

This commit is contained in:
developer 2026-05-06 12:53:45 +08:00
parent f4a50b8dd5
commit d158c6624f

View File

@ -49,7 +49,7 @@ public function __invoke(Deal $deal, Request $request)
$contract->save(); $contract->save();
$agent = $deal->agent; $agent = $deal->agent;
$deal->notify(new ContractUpdatedForDeal($deal->contract)); $deal->notify(new ContractUpdatedForDeal($deal->contract));
$agent->user->notify(new ContractUpdated($deal->contract)); //$agent->user->notify(new ContractUpdated($deal->contract));
return true; return true;
} }
} }