Fayozjon / Laravel-9-RBAC-Starter-with-Admin-LTE-3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Features

  • Login Page login.png
  • User Management user-management.png
  • Role Management role-management.png
  • Permission Management permission-management.png
  • Dynamic website settings website-setting.png
  • View installed module module-view.png
  • File manager file-manager.png
  • File picker file-picker.png

Packages

Requirements

  • php 8
  • mysql
  • composer

How To Install

Clone repository

git clone https://github.com/erikwibowo/Laravel-9-RBAC-Starter-with-Admin-LTE-3.git

Change directory to directory project

cd .\Laravel-9-RBAC-Starter-with-Admin-LTE-3\

Intsall packages

composer install

Copy environment example file

cp .env.example .env

Create database 'admin_lte3'

Change some configuration in .env file from root project

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=admin_lte3
DB_USERNAME=root
DB_PASSWORD=

Config google recapthca key in .env

RECAPTCHA_SITE_KEY=YOUR_API_SITE_KEY
RECAPTCHA_SECRET_KEY=YOUR_API_SECRET_KEY

Generate laravel key

php artisan key:generate

Create storage link

php artisan storage:link

Database migration and seed data

php artisan migrate:fresh --seed

Run in development server

php artisan serve

Login with

email : superadmin@superadmin.com
password : superadmin

Modules

build a new module

php artisan module:build
type the module name (plural). example : posts, categories, sliders etc.

Enable module

php artisan module:enable {module name}

Disable module

php artisan module:disable {module name}

All module files will be generated in root/Modules/{Modulename}

To automatically update permission, go to permission page and click the reload button

Change module config

Update the module config in root/Modules/{module name}/module.json
"menus": [
    {
        "icon": "fas fa-image",
        "name": "{ModuleName}",
        "route": "route.name",
        "permission": "read {modulename}"
    }
],
"permissions": ["{module name}"]

If you need add menu in created module

Update the module config in root/Modules/{Modulename}/module.json
"menus": [
    {
        "icon": "fas fa-image",
        "name": "{Module Name}",
        "route": "route.name",
        "permission": "read {modulename}"
    },
    {
        "icon": "fas fa-images",
        "name": "{Module Name}",
        "route": "route.name",
        "permission": "read {modulename}"
    }
],
"permissions": ["{modulename}", "{modulename}"]

Then reload the permission in Permission > Reload Permission

Build Status Total Downloads Latest Stable Version License

About Laravel

Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:

Laravel is accessible, powerful, and provides tools required for large, robust applications.

Learning Laravel

Laravel has the most extensive and thorough documentation and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.

If you don't feel like reading, Laracasts can help. Laracasts contains over 2000 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.

Laravel Sponsors

We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel Patreon page.

Premium Partners

Contributing

Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the Laravel documentation.

Code of Conduct

In order to ensure that the Laravel community is welcoming to all, please review and abide by the Code of Conduct.

Security Vulnerabilities

If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via taylor@laravel.com. All security vulnerabilities will be promptly addressed.

License

The Laravel framework is open-sourced software licensed under the MIT license.

About


Languages

Language:JavaScript 90.6%Language:CSS 6.9%Language:PHP 1.4%Language:Blade 0.9%Language:HTML 0.2%Language:Shell 0.0%Language:SCSS 0.0%