id(); $table->foreignId('region_id')->references('id')->on('regions')->comment('所屬地區'); $table->json("name")->comment("專案項目名稱"); $table->json("address")->comment("基本資料: 地址"); $table->json("floor_plan")->comment("樓層規劃"); $table->json("building_structure")->comment("建築結構"); $table->json("design_unit")->comment("設計團隊"); $table->json("contact_info")->comment("聯絡資訊"); $table->timestamps(); $table->softDeletes(); }); Schema::enableForeignKeyConstraints(); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('projects'); } };