foreignIdFor(User::class)->primary(); $table->string("first_name")->nullable(); $table->string("last_name")->nullable(); $table->string("position")->nullable(); $table->string("employment_form")->nullable(); $table->date("employment_date")->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists("profiles"); } };