You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
936 B
PHP
41 lines
936 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
User::create([
|
|
'name' => 'Kasir User',
|
|
'email' => 'kasir@portal.com',
|
|
'password' => bcrypt('password'),
|
|
'role' => User::ROLE_CASIER
|
|
]);
|
|
|
|
User::create([
|
|
'name' => 'Team Operation',
|
|
'email' => 'operation@portal.com',
|
|
'password' => bcrypt('password'),
|
|
'role' => User::ROLE_OPERATION
|
|
]);
|
|
|
|
User::create([
|
|
'name' => 'Manager',
|
|
'email' => 'manager@portal.com',
|
|
'password' => bcrypt('password'),
|
|
'role' => User::ROLE_MANAJEMEN
|
|
]);
|
|
}
|
|
}
|