id(); $table->string('nama'); $table->date('tgl_pembuatan'); $table->string('kuota')->nullable(); $table->enum('status', ['dibuka', 'ditutup'])->default('dibuka'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('formulirs'); } };