File: //home/lenf4658/www/unukaltim.lensapedia.id/unukaltim/database/seeders/WebSettingSeeder.php
<?php
namespace Database\Seeders;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class WebSettingSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
\App\Models\WebSetting::create([
'key' => 'EMAIL_ADDRESS',
'value' => 'mailto:unukaltim@gmail.com',
]);
\App\Models\WebSetting::create([
'key' => 'WHATSAPP_LINK',
'value' => 'https://api.whatsapp.com/send/?phone=%2B6285750417213&text&type=phone_number&app_absent=0',
]);
\App\Models\WebSetting::create([
'key' => 'FACEBOOK_LINK',
'value' => 'https://www.facebook.com/pages/Universitas%20Nahdlatul%20Ulama,%20Samarinda%20Seberang/397261400427240/?locale=id_ID',
]);
\App\Models\WebSetting::create([
'key' => 'INSTAGRAM_LINK',
'value' => 'https://www.instagram.com/unukaltim/',
]);
\App\Models\WebSetting::create([
'key' => 'PENDAFTARAN_LINK',
'value' => 'https://docs.google.com/forms/d/1Zjv3OXhWhPgJeZH5YkGvWBtrdSC2DslbqeZAn3H4a7k/viewform?edit_requested=true',
]);
}
}