31 lines
791 B
PHP
31 lines
791 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\SurgeryCenter;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class SurgeryCenterSeeder extends Seeder
|
|
{
|
|
public function run(): void
|
|
{
|
|
$centers = [
|
|
[
|
|
'name' => 'کلینیک پارس',
|
|
'address' => 'مازندران، ساری، میدان امام، مجتمع برلیان',
|
|
'phone' => '9122283482',
|
|
'email' => null,
|
|
'contact_person' => 'دکتر شایگان',
|
|
'description' => null,
|
|
],
|
|
];
|
|
|
|
foreach ($centers as $item) {
|
|
SurgeryCenter::firstOrCreate(
|
|
['name' => $item['name']],
|
|
$item
|
|
);
|
|
}
|
|
}
|
|
}
|