D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
eclinic.dentostock.com
/
database
/
seeders
/
Filename :
SettingTableSeeder.php
back
Copy
<?php namespace Database\Seeders; use App\Models\Setting; use Illuminate\Database\Seeder; class SettingTableSeeder extends Seeder { /** * Run the database seeds. */ public function run(): void { $logoUrl = ('assets/image/infycare-logo.png'); $favicon = ('assets/image/infyCare-favicon.ico'); Setting::create(['key' => 'clinic_name', 'value' => 'Clinic Appointment Management']); Setting::create(['key' => 'contact_no', 'value' => '1234567890']); Setting::create(['key' => 'email', 'value' => 'infycare@email.com']); Setting::create(['key' => 'specialities', 'value' => '1']); Setting::create(['key' => 'currency', 'value' => '1']); Setting::create([ 'key' => 'address_one', 'value' => 'C-303, Atlanta Shopping Mall, Nr. Sudama Chowk, Mota Varachha, Surat, Gujarat, India.', ]); Setting::create([ 'key' => 'address_two', 'value' => 'C-303, Atlanta Shopping Mall, Nr. Sudama Chowk, Mota Varachha, Surat, Gujarat, India.', ]); Setting::create(['key' => 'country_id', 'value' => '101']); Setting::create(['key' => 'state_id', 'value' => '12']); Setting::create(['key' => 'city_id', 'value' => '1041']); Setting::create(['key' => 'postal_code', 'value' => '394101']); Setting::create(['key' => 'logo', 'value' => $logoUrl]); Setting::create(['key' => 'favicon', 'value' => $favicon]); Setting::create(['key' => 'region_code', 'value' => '91']); } }