id(); $table->string('name'); $table->string('slug')->unique(); $table->string('type')->default('inner_page'); $table->string('title'); $table->string('banner')->nullable(); $table->string('favicon')->nullable(); $table->text('description')->nullable(); $table->text('meta_description')->nullable(); $table->string('meta_keywords')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('pages'); } };