id(); $table->string('title'); $table->string('slug')->unique(); $table->json('content'); // JSON-first storage for blocks $table->text('cached_html')->nullable(); // SSH cached version $table->string('meta_description')->nullable(); $table->boolean('is_published')->default(false); $table->foreignId('user_id')->constrained()->onDelete('cascade'); // Author $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('pages'); } };