38 lines
893 B
PHP
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',
|
|
]
|
|
]);
|
|
}
|
|
}
|