⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
hospital.dev-unit.com
/
database
/
seeders
/
View File Name :
FaqsTableSeeder.php
<?php namespace Database\Seeders; use App\Models\Faqs; use Illuminate\Database\Seeder; class FaqsTableSeeder extends Seeder { /** * Run the database seeds. */ public function run(): void { $input = [ [ 'question' => 'Is My Electronic Health Record Kept Private?', 'answer' => 'Health records are kept totally private and we employ robust encryption methods to protect your personal information. You determine who can see the information in your record.', ], [ 'question' => 'Can Doctor 24x7 Handle My Emergency Situations?', 'answer' => 'Doctor 24×7 is designed to handle non-emergent medical problems. You should NOT use it if you are experiencing a medical emergency.', ], [ 'question' => 'Can I Call Doctor 24x7 Outside Of India?', 'answer' => 'Doctor 24×7 consults are unavailable outside of India. However, if you are travelling outside India, you can use our service from a mobile phone using a SIM card issued in India.', ], [ 'question' => 'Is my electronic health record kept private?', 'answer' => 'Health records are kept totally private and we employ robust encryption methods to protect your personal information. You determine who can see the information in your record.', ], [ 'question' => 'How much does a consult cost?', 'answer' => 'The cost of a Doctor consult varies, depending on your choice of consulting the 1st available Doctor OR requesting a call back from a specific Doctor.', ], [ 'question' => 'Do I Talk to "real doctors"?', 'answer' => 'Yes. Doctor 24×7 subscribers only talk to reputed Doctors/Experts attached with top hospitals/private practice who are Licensed practitioners. Each Doctor/Expert on our network is qualified.', ], ]; foreach ($input as $faqs) { Faqs::create($faqs); } } }