id(); $table->string('slug')->unique(); // ключ страницы: home, services, contacts $table->string('title'); // заголовок страницы $table->longText('content')->nullable(); // HTML-контент (основное тело) $table->string('meta_title')->nullable(); $table->text('meta_description')->nullable(); $table->boolean('is_active')->default(true); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('pages'); } };