36 lines
959 B
PHP
36 lines
959 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\SchoolInformation;
|
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class SchoolInformationSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
SchoolInformation::updateOrCreate(
|
|
['id' => 1],
|
|
[
|
|
'school_name' => 'UPTD SDN Cinere 1',
|
|
'npsn' => null,
|
|
'nss' => null,
|
|
'address' => 'Jl. Cinere Raya No.18, Depok',
|
|
'postal_code' => 0,
|
|
'sub_district' => 'Cinere',
|
|
'district' => 'Cinere',
|
|
'city' => 'Depok',
|
|
'province' => 'Jawa Barat',
|
|
'email' => null,
|
|
'headmaster_name' => 'Drs. Nasim',
|
|
'headmaster_nip' => '196804191992031008',
|
|
'phase' => 'C',
|
|
]
|
|
);
|
|
}
|
|
}
|