chore: Google Tag manager setup
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled

This commit is contained in:
2025-10-28 16:32:52 +05:45
parent 9c703306ec
commit dd99e66b10
4 changed files with 27 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ return new class extends Migration {
Schema::create('faqs', function (Blueprint $table) {
$table->id();
$table->string("question");
$table->string('answer');
$table->longText('answer');
$table->timestamps();
});
}