-
-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[INSTALL] The left menu the correct items are not showing up #379
Comments
Hi @ouyuki Thank you for your feedback, the menu shown to you is without rights. the application manages rights, you must initialize the permissions and role in order to connect as admin ([email protected] // password) with these artisan commands:
In CreateAdminUserSeeder.php you will have the login credentials for the admin public function run()
{
$user = User::create([
'name' => 'Admin',
'email' => '[email protected]',
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // === password
]);
$role = Role::create(['name' => 'Admin']);
$permissions = Permission::pluck('id','id')->all();
$role->syncPermissions($permissions);
$user->assignRole([$role->id]);
}
} |
The email is encrypted and does not seem to work, regression introduced by #371 ? to resolve the issue while I find the problem, you can manually change the encrypted address in the database |
It seems that encryption was not working and the problem has been solved, thanks! |
All connection management is managed by inertia in the packages, it seems like an important job to me, I prefer to remove the encryption of email addresses for the moment |
Thx @ouyuki I close the issue, looking forward to seeing you again |
Hi! After installing and opening the left menu the correct items are not showing up, not sure what I'm doing wrong?Thanks!!
image
The text was updated successfully, but these errors were encountered: