first(); if ($existing) { $this->command->info(' ⚠ attendance_settings: 이미 존재 (스킵)'); return; } AttendanceSetting::create([ 'tenant_id' => $tenantId, 'use_gps' => true, 'allowed_radius' => 500, // 500m 'hq_address' => '서울시 강남구 테헤란로 123', 'hq_latitude' => 37.5012, 'hq_longitude' => 127.0396, ]); $this->command->info(' ✓ attendance_settings: 1건 생성'); } }