id(); $table->string('first_name'); $table->string('last_name'); $table->string('email')->unique(); $table->string('position'); $table->string('department'); $table->date('arrival_date'); $table->string('integration_status'); $table->foreignId('created_by')->constrained('users'); $table->timestamp('validated_by_rh_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('agents'); } };