id(); $table->string('document_type'); $table->string('block'); $table->longText('content')->nullable(); $table->integer('sort_order')->default(1); $table->boolean('editable')->default(true); $table->timestamps(); $table->unique(['document_type', 'block']); }); } public function down(): void { Schema::dropIfExists('document_templates'); } };