1
0
Fork 0
master
panliang 2023-08-30 17:40:30 +08:00
parent 1a2b30c0a4
commit d5180b9043
2 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ return [
| |
*/ */
'paths' => ['api/*', 'sanctum/csrf-cookie'], 'paths' => ['api/*', 'sanctum/csrf-cookie', 'admin-api/*'],
'allowed_methods' => ['*'], 'allowed_methods' => ['*'],

View File

@ -16,7 +16,7 @@ class PatientSeeder extends Seeder
{ {
Patient::truncate(); Patient::truncate();
PatientRecord::truncate(); PatientRecord::truncate();
(new PatientFactory())->count(10)->create(); (new PatientFactory())->count(100)->create();
(new PatientRecordFactory())->count(100)->create(); (new PatientRecordFactory())->count(1000)->create();
} }
} }