Siopas Inventory PETI for ISTW Website
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Database\Seeders;
|
|
|
|
|
|
|
|
use App\Models\m_role;
|
|
|
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
|
|
|
|
class RoleSeeder extends Seeder
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the database seeds.
|
|
|
|
*/
|
|
|
|
public function run(): void
|
|
|
|
{
|
|
|
|
// Role Admin
|
|
|
|
m_role::create([
|
|
|
|
'id' => 'd961ad96-211b-4f68-9ff2-111111111111',
|
|
|
|
'name' => 'Admin',
|
|
|
|
'description' => 'admin sistem',
|
|
|
|
'created_by' => 'Seeder',
|
|
|
|
'updated_by' => 'Seeder',
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Role User
|
|
|
|
m_role::create([
|
|
|
|
'id' => 'a5c7b207-1a1c-43b8-89bf-222222222222',
|
|
|
|
'name' => 'Operator',
|
|
|
|
'description' => 'Operator sistem',
|
|
|
|
'created_by' => 'Seeder',
|
|
|
|
'updated_by' => 'Seeder',
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|