id(); $table->integer('author_id'); $table->integer('category'); $table->string('title'); $table->string('slug')->unique(); $table->text('content'); $table->text('featured_image'); $table->string('tags')->nullable(); $table->text('meta_keywords')->nullable(); $table->text('meta_description')->nullable(); $table->integer('visibility')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('posts'); } };