21 lines
574 B
PHP
21 lines
574 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use App\Models\ContactInfo;
|
|
|
|
class ContactInfoSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
ContactInfo::create([
|
|
'title' => 'Hubungi Kami - INUFA',
|
|
'description' => 'Silakan hubungi kami melalui salah satu kontak di bawah ini untuk informasi lebih lanjut tentang layanan kami.',
|
|
'phone' => '+62 812-3456-7890',
|
|
'email' => 'info@inufa.com',
|
|
'whatsapp' => '+62 812-3456-7890',
|
|
'is_active' => true
|
|
]);
|
|
}
|
|
}
|