id(); $table->string('title'); $table->string('slug'); $table->boolean('active')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('navbars'); } };