| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace Database\Seeders;
- use Illuminate\Database\Console\Seeds\WithoutModelEvents;
- use Illuminate\Database\Seeder;
- use App\Models\Setting;
- class SettingSeeder extends Seeder
- {
- /**
- * Run the database seeds.
- */
- public function run(): void
- {
- $obj = new Setting;
- $obj->logo = '';
- $obj->favicon = '';
- $obj->top_bar_phone = '111-222-3333';
- $obj->top_bar_email = 'contact@example.com';
- $obj->footer_address = '34 Antiger Lane, USA, 12937';
- $obj->footer_phone = '111-222-3333';
- $obj->footer_email = 'contact@example.com';
- $obj->facebook = '#';
- $obj->twitter = '#';
- $obj->youtube = '#';
- $obj->linkedin = '#';
- $obj->instagram = '#';
- $obj->copyright = 'Copyright © 2024, TripSummit. All Rights Reserved. ';
- $obj->banner = '';
- $obj->save();
- }
- }
|