Viewing: HomeSectionSeeder.php
<?php namespace Database\Seeders; use App\Models\HomeSection; use Illuminate\Database\Seeder; class HomeSectionSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { HomeSection::insert([ [ 'title_tag' =>'h1', 'title' => 'banner', 'image_url' => '', 'thumbnail' => '', 'image_alt' => 'banner_image', 'thumbnail_alt' => 'banner_thumbnail', 'short_desc' => 'Maximize efficiency with our top - tier outsourcing services', 'description' => 'Welcome to Lucerna Tech, your trusted partner for comprehensive outsourcing services and resource augmentation. Don’t let talent gaps hold you back', 'meta_keyword' => '', 'slug' => 'banner', 'order' => '1', 'status' => '1', ], [ 'title_tag' =>'h1', 'title' => 'WHO WE ARE?', 'image_url' => '', 'thumbnail' => '', 'image_alt' => 'stats_image', 'thumbnail_alt' => 'stats_thumbnail', 'short_desc' => 'Boost Business with IT Staff Augmentation', 'description' => '', 'meta_keyword' => '', 'slug' => 'stats', 'order' => '2', 'status' => '1', ], [ 'title_tag' =>'h1', 'title' => 'WHAT WE DO', 'image_url' => '', 'thumbnail' => '', 'image_alt' => 'service_image', 'thumbnail_alt' => 'service_thumbnail', 'short_desc' => 'Discover Innovative Solutions - Empower Your Business!', 'description' => '', 'meta_keyword' => '', 'slug' => 'services', 'order' => '3', 'status' => '1', ], [ 'title_tag' =>'h1', 'title' => 'TECHNOLOGY STACK', 'image_url' => '', 'thumbnail' => '', 'image_alt' => 'technology_image', 'thumbnail_alt' => 'technology_thumbnail', 'short_desc' => 'Explore Boundless Potential - Our Tech Stack Awaits!', 'description' => '', 'meta_keyword' => '', 'slug' => 'technologies', 'order' => '4', 'status' => '1', ], [ 'title_tag' =>'h1', 'title' => 'SOLUTIONS OFFERING', 'image_url' => '', 'thumbnail' => '', 'image_alt' => 'solution_image', 'thumbnail_alt' => 'solution_thumbnail', 'short_desc' => 'Elevate Success - Tailored Services, Tailored Solutions!', 'description' => '', 'meta_keyword' => '', 'slug' => 'solutions', 'order' => '5', 'status' => '1', ], [ 'title_tag' =>'h1', 'title' => 'OUR ENGAGEMENT MODEL', 'image_url' => '', 'thumbnail' => '', 'image_alt' => 'engagement_image', 'thumbnail_alt' => 'engagement_thumbnail', 'short_desc' => 'Experience Impactful Collaboration - Lets Connect!', 'description' => '', 'meta_keyword' => '', 'slug' => 'engagement', 'order' => '6', 'status' => '1', ], ]); } }
Return