call(ThemesTableSeeder::class); $this->call(BannerTableSeeder::class); $this->call(AboutUsTableSeeder::class); $this->call(OurHistorySeeder::class); $this->call(FaqQuestionSeeder::class); $this->call(PolicySeeder::class); $this->call(TestimonialTableSeeder::class); $this->call(WhyChooseUsTableSeeder::class); $this->call(ReadyToJoinUsSeeder::class); $this->call(MobileAppSectionSeeder::class); $this->call(CmsSectionsSeeder::class); $this->call(CouponSeeder::class); $pages = [ [ 'restaurant_id' => 1, 'title' => 'Home', 'slug' => 'home', 'type' => 'home', 'content' => '
Home page content
', 'meta_data' => null, 'seo_meta_keywords' => 'home, welcome', 'seo_meta_description' => 'This is the home page', 'page_status' => 'publish', 'page_template' => 'default', 'author_id' => 1, 'created_at' => now(), 'updated_at' => now(), ], [ 'restaurant_id' => 1, 'title' => 'About Us', 'slug' => 'about-us', 'type' => 'about', 'content' => 'About us content
', 'meta_data' => null, 'seo_meta_keywords' => 'about, us', 'seo_meta_description' => 'Learn more about us', 'page_status' => 'publish', 'page_template' => 'default', 'author_id' => 1, 'created_at' => now(), 'updated_at' => now(), ], [ 'restaurant_id' => 1, 'title' => 'Mission', 'slug' => 'mission', 'type' => 'mission', 'content' => 'Demo College provides quality education to customers...
', 'meta_data' => null, 'seo_meta_keywords' => 'mission, education, customers', 'seo_meta_description' => 'Our mission is to provide quality education.', 'page_status' => 'publish', 'page_template' => 'default', 'author_id' => 1, 'created_at' => now(), 'updated_at' => now(), ], [ 'restaurant_id' => 1, 'title' => 'Vision', 'slug' => 'vision', 'type' => 'vision', 'content' => 'Demo College inspires customers to acquire genuine knowledge...
', 'meta_data' => null, 'seo_meta_keywords' => 'vision, education, knowledge', 'seo_meta_description' => 'Our vision is to inspire customers with knowledge.', 'page_status' => 'publish', 'page_template' => 'default', 'author_id' => 1, 'created_at' => now(), 'updated_at' => now(), ], ]; // Insert pages DB::table('pages')->insert($pages); } }