deploy commit

This commit is contained in:
2026-07-15 17:23:15 +07:00
commit b94ef4a695
148 changed files with 14831 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
<?php
namespace Database\Seeders;
use App\Models\Account;
use App\Models\DoctorProfile;
use App\Models\Submission;
use Illuminate\Database\Seeder;
class AccountSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run() {
Account::factory()
->count(10)
->state(['role' => 'doctor'])
->has(DoctorProfile::factory(), 'doctorProfile')
->create();
Account::factory()
->count(10)
->state(['role' => 'patient'])
->create();
}
}