id(); $table->string('keyword')->index(); $table->json('title')->comment('標題'); $table->json("description")->comment("短文"); $table->string("banner_pc")->comment("banner for pc"); $table->string("banner_mobile")->comment("banner for mobile"); $table->json("banner_alt")->comment("banner alt"); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('esgs'); } };