Viewing: ConfigurationSeeder.php
<?php namespace Database\Seeders; use App\Models\Configuration; use Illuminate\Database\Console\Seeds\WithoutModelEvents; use Illuminate\Database\Seeder; use Illuminate\Support\Carbon; class ConfigurationSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { Configuration::insert([ 'site_title' => 'Lorem Ipsum', 'site_keyword' => 'What is Lorem Ipsum', 'phone_1' => '03333688865', 'phone_2' => '03334444865', 'address' => 'Lahore', 'site_url' => 'https://www.google.com/', 'site_description' => 'Supplying leading brands of sign printing and production', 'site_logo' => "configuration/pexels-mohamed-abdelghaffar-771742.jpg", // 'thumbnail' => "cms/R2iIV67CxdGTYQCN3yiTZGQK8T9lEZOf8jmOZpHo.png", // 'description' => 'Supplying leading brands of sign printing and production systems for over 12 years including Mutoh, Rolan and ALLWIN printers. SME are ideally positioned to advise,deliver, train and support the display graphic industries across the Kingdom.', // 'slug' => 'cms-pages', 'stat_title_1' => 'Part of ABM Info Tech', 'stat_title_2' => 'ABM Group', 'stat_title_3' => '50+', 'stat_title_4' => 'Offices', 'stat_title_5' => '100+', 'stat_short_desc_1' => "Pakistan's leading provider of technology services and solutions since 1983", 'stat_short_desc_2' => "Pakistan's oldest business house with 8 flagship companies with core expertise in IT, Aviation, Defense & Indenting, UAVs, General Trading, Travel & Tourism", 'stat_short_desc_3' => "Highly qualified professionals and accredited resources", 'stat_short_desc_4' => "In five countries across the globe", 'stat_short_desc_5' => "Professional Services projects delivered in MENA/META", 'stat_desc_1' => "Pakistan's leading provider of technology services and solutions since 1983", 'stat_desc_2' => "Pakistan's oldest business house with 8 flagship companies with core expertise in IT, Aviation, Defense & Indenting, UAVs, General Trading, Travel & Tourism", 'stat_desc_3' => "Highly qualified professionals and accredited resources", 'stat_desc_4' => "In five countries across the globe", 'stat_desc_5' => "Professional Services projects delivered in MENA/META", 'stat_image_url_1' => 'configuration/pexels-mohamed-abdelghaffar-771742.jpg', 'stat_image_url_2' => 'configuration/pexels-mohamed-abdelghaffar-771742.jpg', 'stat_image_url_3' => 'configuration/pexels-mohamed-abdelghaffar-771742.jpg', 'stat_image_url_4' => 'configuration/pexels-mohamed-abdelghaffar-771742.jpg', 'stat_image_url_5' => 'configuration/pexels-mohamed-abdelghaffar-771742.jpg', 'engage_title_1' => 'Staff Augmentation', 'engage_title_2' => 'Self-Managed Team', 'engage_title_3' => 'Full Outsourcing', 'engage_short_desc_1' => 'Bridge any resource or skill gaps within your in-house IT team with our experts managed directly by you.', 'engage_short_desc_2' => 'Enlist a self-managed team under the guidance of Lucerna’s project manager or team lead to drive your IT initiative forward.', 'engage_short_desc_3' => 'We take full responsibility for the quality and associated risks of your specific IT functions ensuring they are effectively managed and taken care of.', 'engage_desc_1' => 'Bridge any resource or skill gaps within your in-house IT team with our experts managed directly by you.', 'engage_desc_2' => 'Enlist a self-managed team under the guidance of Lucerna’s project manager or team lead to drive your IT initiative forward.', 'engage_desc_3' => 'We take full responsibility for the quality and associated risks of your specific IT functions ensuring they are effectively managed and taken care of.', 'engage_image_url_1' => 'configuration/pexels-mohamed-abdelghaffar-771742.jpg', 'engage_image_url_2' => 'configuration/pexels-mohamed-abdelghaffar-771742.jpg', 'engage_image_url_3' => 'configuration/pexels-mohamed-abdelghaffar-771742.jpg', "created_at" => Carbon::now(), "updated_at" => Carbon::now(), ]); } }
Return