id(); $table->foreignId('customer_id')->constrained(); $table->string('name'); $table->string('email')->nullable(); $table->string('phone')->nullable(); $table->string('address')->nullable(); $table->string('city')->nullable(); $table->string('state')->nullable(); $table->string('zip')->nullable(); $table->string('country')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('addresses'); } };