ClientObserver.php 253 B

123456789101112131415
  1. <?php
  2. namespace App\Observers;
  3. use App\Models\Client;
  4. class ClientObserver
  5. {
  6. public function updating(Client $client): void
  7. {
  8. if ($client->isDirty('profile_media_id')) {
  9. $client->selfie_verified = false;
  10. }
  11. }
  12. }