Giter VIP home page Giter VIP logo

wahid09 / laravel-quickadmin Goto Github PK

View Code? Open in Web Editor NEW
4.0 3.0 1.0 9.06 MB

QuickAdmin is a web-based starter kit to help to start a large application without thinking about authentication, authorization, and role-based permission. The codebase is structured by a Repository pattern. Laravel Ui is used for authentication. QuickAdmin is accessible, powerful, and provides tools required for large, robust applications.

Home Page: https://github.com/wahid09/Laravel-QuickAdmin

License: MIT License

PHP 77.48% Blade 22.32% Shell 0.19%
laravel laravel-acl laravel-boilerplate laravel-framework laravel-jwt-authentication jwt-authentication

laravel-quickadmin's Introduction

About QuickAdmin

Build Status License

QuickAdmin is a web-based starter kit to help to start a large application without thinking about authentication, authorization, and role-based permission.

  • The codebase is structured by a Repository pattern.
  • Laravel Ui is used for authentication.

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

Prerequisite
  • PHP >= 8.1

Getting Started

  • First clone the project and change the directory
git clone https://github.com/wahid09/QuickAdmin.git
cd QuickAdmin
  • Install Dependencies
  1. install composer
composer install
  1. Copy .env.example to .env
cp .env.example .env
  1. Generate application key
php artisan key:generate
  1. Databse migrations
php artisan migrate:refresh --seed
  1. Start the webserver
php artisan serve
Super Admin Login

Role and Permission:

The QuickAdmin provides dynamic ACL in a single action of every user. To achieve this functionality use the below code in your controller method.

Gate::authorize('permission slug');

e.g

public function store(ModuleRequest $request){
       Gate::authorize('module-create');
        //code
}

Blade directive for sidebar menu control.

@permission('permission slug')
//code
@endpermission
User log activity control:

To track the record of user activity using the below code in every action method in your controller.

\LogActivity::addToLog('user action');
License

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

laravel-quickadmin's People

Contributors

maseh87 avatar wahid09 avatar zahanasoft avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

zahanasoft

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.