id(); $table->string('title'); $table->string('description')->nullable(); $table->text('content'); $table->string('slug'); $table->string('image_path'); $table->string('image_thumbnail'); $table->string('image_alt'); $table->string('user_token'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('posts'); } };