id(); $table->string('key'); // bv. 'Geboortedatum' $table->string('value'); // bv. '12 maart 1988' $table->boolean('hidden')->default(false); // tonen/verbergen $table->string('icon')->nullable(); // bv. 'fa-solid fa-calendar' $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('personalias'); } };