id(); $table->string('category'); $table->text('question'); $table->text('answer'); $table->unsignedInteger('order')->default(0); $table->boolean('is_active')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('faqs'); } };