![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/syn.corals.io/Corals/modules/Utility/database/seeds/ |
<?php namespace Corals\Modules\Utility\database\seeds; use Carbon\Carbon; use Illuminate\Database\Seeder; use Illuminate\Support\Facades\DB; class UtilitySettingsDatabaseSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { DB::table('settings')->insert([ [ 'code' => 'utility_google_address_api_key', 'type' => 'TEXT', 'category' => 'Utilities', 'label' => 'Google address api key', 'value' => 'AIzaSyBrMjtZWqBiHz1Nr9XZTTbBLjvYFICPHDM', 'editable' => 1, 'hidden' => 0, 'created_at' => Carbon::now(), 'updated_at' => Carbon::now(), ], [ 'code' => 'utility_google_address_country', 'type' => 'TEXT', 'category' => 'Utilities', 'label' => 'Google address Search Country', 'value' => '', 'editable' => 1, 'hidden' => 0, 'created_at' => Carbon::now(), 'updated_at' => Carbon::now(), ], [ 'code' => 'utility_google_address_default_search_radius', 'type' => 'NUMBER', 'category' => 'Utilities', 'label' => 'Default Search Radius', 'value' => 50, 'editable' => 1, 'hidden' => 0, 'created_at' => Carbon::now(), 'updated_at' => Carbon::now(), ], [ 'code' => 'utility_mailchimp_api_key', 'type' => 'TEXT', 'category' => 'Utilities', 'label' => 'Mailchimp API Key', 'value' => '', 'editable' => 1, 'hidden' => 0, 'created_at' => Carbon::now(), 'updated_at' => Carbon::now(), ], [ 'code' => 'utility_mailchimp_list_id', 'type' => 'TEXT', 'category' => 'Utilities', 'label' => 'Mailchimp List Id', 'value' => '', 'editable' => 1, 'hidden' => 0, 'created_at' => Carbon::now(), 'updated_at' => Carbon::now(), ], [ 'code' => 'utility_schedule_time', 'type' => 'SELECT', 'label' => 'Schedule Time', 'value' => '{"Off":"- Off -","06":"06 AM","07":"07 AM","08":"08 AM","09":"09 AM","10":"10 AM","11":"11 AM","12":"Noon","13":"01 PM","14":"02 PM","15":"03 PM","16":"04 PM","17":"05 PM","18":"06 PM","19":"07 PM","20":"08 PM","21":"09 PM","22":"10 PM"}', 'editable' => 1, 'hidden' => 0, 'category' => 'Utilities', 'created_at' => Carbon::now(), 'updated_at' => Carbon::now(), ], [ 'code' => 'utility_days_of_the_week', 'type' => 'SELECT', 'label' => 'Days of the week', 'value' => '{"Mon":"Mon","Tue":"Tue","Wed":"Wed","Thu":"Thu","Fri":"Fri","Sat":"Sat","Sun":"Sun"}', 'editable' => 1, 'hidden' => 0, 'category' => 'Utilities', 'created_at' => Carbon::now(), 'updated_at' => Carbon::now(), ], [ 'code' => 'utility_location_types', 'type' => 'SELECT', 'label' => 'Location Types', 'value' => '{"city":"City","state":"State","country":"Country"}', 'editable' => 1, 'hidden' => 0, 'category' => 'Utilities', 'created_at' => Carbon::now(), 'updated_at' => Carbon::now(), ], ]); } }