id(); $table->string('first_name'); $table->string('last_name'); $table->foreignId('company_id')->constrained()->onDelete('cascade'); $table->string('email')->nullable(); $table->string('phone')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('employees'); } };