Download the PHP package socieboy/jupiter without Composer
On this page you can find all versions of the php package socieboy/jupiter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package jupiter
Jupiter CMS
Introduction
First, install the Jupiter installer and make sure that the global Composer bin directory is within your system's $PATH:
Installation
Next, create a new Laravel application.
Before install the Jupiter CMS, you should configure the settings of your database on the .env file.
Next run the command
During the proccess of the installation you will be asked if you want to install the migrations, if you set the database settings, type YES and continue.
Next, you will be asked to install, NPM, Bower and run Gulp, we recommend to type YES.
Jupiter CMS Default values
Users
You can change those values on the database\seeds\UserTableSeeder class of the system.
-
Super Administrador - This user won't be displayed on the system. (I recommen to keep this user for the developer.)
- Email: [email protected]
- Password: suadmin
- Administrator
- Email: [email protected]
- Password: admin
Roles
- dashboard
- This role is assigned to all users that can access the dashboard.
- super_admin
- This role is assigned to the Super Admin and it won't be displayed on the roles table of the system.
- manage_roles
- This role is assigned to the Administrator user to manage the CRUD of Roles and Permission.
- manage_users
- This role is assigned to the Administrator user to manage the CRUD of Users.
Permissions
The dashboard permisison is assigned to the dashboard role.
- dashboard
Those permisison are assigned to the super_admin.
- read_permissions
- create_permissions
- update_permissions
- delete_permissions
Those permission are assigned to the role manage_roles and super_admin.
- read_roles
- create_roles
- update_roles
- delete_roles
Those permission are assigned to the role manage_users and super_admin.
- read_users
- create_users
- update_users
- delete_users
If you want to create your own permissions there is a PermissionTableSeeder class on the database\seeds\ folder. Define a permission to upload a photo.
Extend your application and use the ACL.
On your controller you can do that:
On the views you can use the blade directives
Dashboard
Visit the route /admin and you will be redirected to the login to get access to the dashboard.