cors
parent
1a2b30c0a4
commit
d5180b9043
|
|
@ -15,7 +15,7 @@ return [
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'paths' => ['api/*', 'sanctum/csrf-cookie'],
|
'paths' => ['api/*', 'sanctum/csrf-cookie', 'admin-api/*'],
|
||||||
|
|
||||||
'allowed_methods' => ['*'],
|
'allowed_methods' => ['*'],
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue