Untitled
Anonymous
plain_text
03/29/2024 5:54 PM
728 B
22
Indexable
User::create([
'name' => 'Admin',
'email' => '[email protected]',
'password' => bcrypt('admin'),
'role' => 'admin',
]);
User::create([
'name' => 'Editor',
'email' => '[email protected]',
'password' => bcrypt('editor'),
'role' => 'editor',
]);
User::create([
'name' => 'User',
'email' => '[email protected]',
'password' => bcrypt('user'),
'role' => 'user',
]);
Editor is loading...
Leave a Comment