Skip to content

Instantly share code, notes, and snippets.

@MyFRA
Created October 9, 2021 21:43
Show Gist options
  • Save MyFRA/bdbf055a8aec731e87360daa88c68128 to your computer and use it in GitHub Desktop.
Save MyFRA/bdbf055a8aec731e87360daa88c68128 to your computer and use it in GitHub Desktop.
Akun Pengguna
// Superadmin
User::create([
'name' => 'Author',
'email' => '[email protected]',
'password' => Hash::make('authortamvan'),
'role' => 'superadmin',
'number_phone' => '085865721251'
]);
// General User
User::create([
'name' => 'User',
'email' => '[email protected]',
'password' => Hash::make('testuser'),
'role' => 'user',
'number_phone' => '085865721251'
]);
// PKS Kemangkon
User::create([
'name' => 'PKS Kemangkon',
'email' => '[email protected]',
'password' => Hash::make('pks.kemangkon'),
'role' => 'user',
'number_phone' => '085865721251'
]);
// PKS Bukateja
User::create([
'name' => 'PKS Bukateja',
'email' => '[email protected]',
'password' => Hash::make('pks.bukateja'),
'role' => 'user',
'number_phone' => '085865721251'
]);
// PKS Mrebet
User::create([
'name' => 'PKS Mrebet',
'email' => '[email protected]',
'password' => Hash::make('pks.mrebet'),
'role' => 'user',
'number_phone' => '085865721251'
]);
// PKS Bobotsari
User::create([
'name' => 'PKS Bobotsari',
'email' => '[email protected]',
'password' => Hash::make('pks.bobotsari'),
'role' => 'user',
'number_phone' => '085865721251'
]);
// PKS Rembang
User::create([
'name' => 'PKS Rembang',
'email' => '[email protected]',
'password' => Hash::make('pks.rembang'),
'role' => 'user',
'number_phone' => '085865721251'
]);
// PKS Bojongsari
User::create([
'name' => 'PKS Bojongsari',
'email' => '[email protected]',
'password' => Hash::make('pks.bojongsari'),
'role' => 'user',
'number_phone' => '085865721251'
]);
// PKS Padamara
User::create([
'name' => 'PKS Padamara',
'email' => '[email protected]',
'password' => Hash::make('pks.padamara'),
'role' => 'user',
'number_phone' => '085865721251'
]);
// PKS Karanganyar
User::create([
'name' => 'PKS Karanganyar',
'email' => '[email protected]',
'password' => Hash::make('pks.karanganyar'),
'role' => 'user',
'number_phone' => '085865721251'
]);
// PKS Purbalingga
User::create([
'name' => 'PKS Purbalingga',
'email' => '[email protected]',
'password' => Hash::make('pks.purbalingga'),
'role' => 'user',
'number_phone' => '085865721251'
]);
// PKS Pengadegan
User::create([
'name' => 'PKS Pengadegan',
'email' => '[email protected]',
'password' => Hash::make('pks.pengadegan'),
'role' => 'user',
'number_phone' => '085865721251'
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment