id(); $table->string('title'); $table->string('type')->default('blog'); $table->longText('content'); $table->string('location')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('posts'); } };