Last bugfixes
This commit is contained in:
@@ -19,7 +19,7 @@ onMounted(async () => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<label :for="props.belongsTo">{{contentData.content}}</label>
|
<label :for="props.belongsTo" v-html="contentData.content"></label>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ return new class extends Migration {
|
|||||||
Schema::create('page_texts', function (Blueprint $table) {
|
Schema::create('page_texts', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->string('name');
|
$table->string('name');
|
||||||
$table->string('content');
|
$table->longText('content');
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ return new class extends Migration {
|
|||||||
$table->string('lastname');
|
$table->string('lastname');
|
||||||
$table->string('nickname')->nullable();
|
$table->string('nickname')->nullable();
|
||||||
$table->string('participation_type');
|
$table->string('participation_type');
|
||||||
$table->string('local_group');
|
$table->string('local_group')->nullable();
|
||||||
$table->date('birthday');
|
$table->date('birthday');
|
||||||
$table->string('address_1');
|
$table->string('address_1');
|
||||||
$table->string('address_2')->nullable();
|
$table->string('address_2')->nullable();
|
||||||
|
|||||||
Reference in New Issue
Block a user