migrate to gtea from bistbucket

This commit is contained in:
2026-03-15 17:08:23 +07:00
commit 129ca2260c
3716 changed files with 566316 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
<?php
namespace Modules\Authentication\Database\Seeders;
use Illuminate\Database\Seeder;
use Modules\Authentication\Models\SAASFaq;
class SAASFaqSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
SAASFaq::insert([
[
'question' => 'What is an academic program?',
'answer' => 'The academic program is a one stop solution for students. Where every student has the opportunity to ensure A+ preparation for board exams through interactive live classes, homework, live tests and progress analysis by the best mentors in each subject throughout the year. Once a student starts this program, he will not have to go to any coaching or private tutor after school/college.',
'created_at' => now(),
'updated_at' => now(),
],
[
'question' => 'What is an academic program?',
'answer' => 'The academic program is a one stop solution for students. Where every student has the opportunity to ensure A+ preparation for board exams through interactive live classes, homework, live tests and progress analysis by the best mentors in each subject throughout the year. Once a student starts this program, he will not have to go to any coaching or private tutor after school/college.',
'created_at' => now(),
'updated_at' => now(),
],
[
'question' => 'What is an academic program?',
'answer' => 'The academic program is a one stop solution for students. Where every student has the opportunity to ensure A+ preparation for board exams through interactive live classes, homework, live tests and progress analysis by the best mentors in each subject throughout the year. Once a student starts this program, he will not have to go to any coaching or private tutor after school/college.',
'created_at' => now(),
'updated_at' => now(),
],
]);
}
}