id(); $table->string('nama_paket'); $table->text('deskripsi')->nullable(); $table->decimal('harga', 12, 2); $table->integer('durasi_hari'); $table->boolean('is_available')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('paket'); } };