id(); $table->jsonb('name'); $table->string('image'); $table->enum('status', ['new', 'soon', 'published'])->default('published'); $table->string('type'); $table->boolean('is_power')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('services'); } };