id(); $table->integer('blog_category_id'); $table->string('title')->nullable(); $table->string('slug')->nullable(); $table->text('short_description')->nullable(); $table->text('description')->nullable(); $table->string('photo')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('posts'); } };