id(); $table->string('title'); $table->string('slug')->unique(); $table->text('description')->nullable(); $table->boolean('is_published')->default(false); $table->boolean('is_featured')->default(false); $table->date('published_at')->nullable(); $table->mediumText('content')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('entries'); } };