Files
kaunter/database/seeds/RolesSeeder.php
T
Zakwan Hamdan 60afe5d1ba Initial commit
2020-10-19 10:12:55 +08:00

38 lines
893 B
PHP

<?php
use Illuminate\Database\Seeder;
class RolesSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
DB:table('roles')->insert([
[
'role_name' => 'Penolong Pengurus Cawangan',
'role_code' => 'PPC',
'description' => 'Penolong Pengurus Cawangan',
],
[
'role_name' => 'Khazanah',
'role_code' => 'Khazanah',
'description' => 'Khazanah',
],
[
'role_name' => 'Juruwang',
'role_code' => 'TT',
'description' => 'Juruwang',
],
[
'role_name' => 'Penilai',
'role_code' => 'PP',
'description' => 'Penilai',
]
]);
}
}