master_template/database/seeders/WebsiteSettingSeeder.php
2024-06-18 11:31:51 +05:45

45 lines
2.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace Database\Seeders;
use App\Models\Settings;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class WebsiteSettingSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
Settings::create([
'title' => 'Hulaki_Khabar',
'description' => 'हुलाकी खबर समाजमा सकारात्मक प्रभाव गर्ने लक्ष्यमा समाजिक न्याय र पारदर्शितामा प्रोत्साहित गर्दछ। हुलाकी खबरले नेपाली बोल्ने समुदायलाई समाचारमा संचित, शिक्षित, र जोडित गर्दै महत्वपूर्ण भूमिका खेल्दछ, राष्ट्रिय र अन्तर्राष्ट्रिय समाचारमा सक्रिय योगदान गर्दै डिजिटल पत्रकारितामा एक प्रमुख भूमिका खेल्दछ।',
'url1' => 'www.hulakikhabar.com',
'url2' => '',
'email' => 'abc@example.com',
'location' => 'काठमाण्डौ , नेपाल',
'phone' => '९८००००००००',
'secondary_phone' => '०१--',
'google_map' => '',
'fb' => 'https://www.facebook.com',
'insta' => 'https://www.facebook.com/',
'twitter' => 'https://www.facebook.com/',
'tiktok' => 'https://www.facebook.com/',
'youtube' => 'https://www.facebook.com/',
'working_days' => '',
'working_hours' => '',
'leave_days' => '',
'primary_logo' => '',
'secondary_logo' => '',
'thumb' => '',
'icon' => '',
'display_order' => 1,
'status' => 1,
]);
}
}