id(); $table->string('name')->unique(); // системный идентификатор блока (латиница): hero, footer_contacts $table->string('title'); // читаемое название для отображения в админке $table->longText('content')->nullable(); // HTML-контент блока $table->boolean('is_active')->default(true); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('blocks'); } };