id(); $table->foreignId('user_id')->constrained()->cascadeOnDelete(); $table->string('first_name')->nullable(); $table->string('last_name')->nullable(); $table->string('location')->nullable(); $table->string('bio')->nullable(); $table->string('profile_image')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('profiles'); } };