All Projects → appzcoder → Laravel Admin

appzcoder / Laravel Admin

Licence: mit
Laravel Admin Panel

Projects that are alternatives of or similar to Laravel Admin

Aimeos
Integrated online shop based on Laravel 8 and the Aimeos e-commerce framework
Stars: ✭ 2,354 (+283.39%)
Mutual labels:  laravel, laravel-admin
Platform
A @laravel based RAD platform for back-office applications, admin/user panels, and dashboards.
Stars: ✭ 2,623 (+327.2%)
Mutual labels:  laravel, laravel-admin
Ladmin
EasyLms is a development management system with Laravel
Stars: ✭ 141 (-77.04%)
Mutual labels:  laravel, laravel-admin
Crudbooster
Laravel CRUD Generator, Make an Advanced Web Application Quickly
Stars: ✭ 1,580 (+157.33%)
Mutual labels:  laravel, laravel-admin
Dcat Admin
🔥 基于 Laravel 的后台系统构建工具 (Laravel Admin),使用很少的代码快速构建一个功能完善的高颜值后台系统,内置丰富的后台常用组件,开箱即用,让开发者告别冗杂的HTML代码
Stars: ✭ 2,783 (+353.26%)
Mutual labels:  laravel, laravel-admin
Laravel Api Boilerplate
A Boilerplate Project For Laravel API's (NOT MAINTAINED)
Stars: ✭ 113 (-81.6%)
Mutual labels:  laravel, laravel-admin
Adminlte Laravel
A Laravel 5 package that switchs default Laravel scaffolding/boilerplate to AdminLTE template and Pratt Landing Page with Bootstrap 3.0
Stars: ✭ 1,814 (+195.44%)
Mutual labels:  laravel, laravel-admin
Project
⭐️ Antares Project Application Skeleton. This is the very first place you should start. It allows you to create a brand new awesome project in easy few steps.
Stars: ✭ 84 (-86.32%)
Mutual labels:  laravel, laravel-admin
Core
AdminArchitect - Active Admin for Laravel
Stars: ✭ 194 (-68.4%)
Mutual labels:  laravel, laravel-admin
Cms
Multilingual PHP CMS built with Laravel and bootstrap
Stars: ✭ 2,342 (+281.43%)
Mutual labels:  laravel, laravel-admin
Laracms
LaraCMS 是在学习 laravel ( web 开发实战进阶 + 实战构架 API 服务器) 过程中产生的一个业余作品,试图通过简单的方式,快速构建一套基本的企业站同时保留很灵活的扩展能力和优雅的代码方式,当然这些都得益Laravel的优秀设计。同时LaraCMS 也是一个学习Laravel 不错的参考示例。
Stars: ✭ 588 (-4.23%)
Mutual labels:  laravel, laravel-admin
Administrator
a fork from Frozennode/Administrator
Stars: ✭ 296 (-51.79%)
Mutual labels:  laravel, laravel-admin
Log Viewer
Log viewer for laravel
Stars: ✭ 108 (-82.41%)
Mutual labels:  laravel, laravel-admin
Voyager
Voyager - The Missing Laravel Admin
Stars: ✭ 10,801 (+1659.12%)
Mutual labels:  laravel, laravel-admin
Yicms
基于laravel5.5 开发的Yicms系统的基础架构
Stars: ✭ 93 (-84.85%)
Mutual labels:  laravel, laravel-admin
Speedy
🚄A Laravel Admin Package to create a website quickly
Stars: ✭ 146 (-76.22%)
Mutual labels:  laravel, laravel-admin
Config
Config manager for laravel-admin
Stars: ✭ 83 (-86.48%)
Mutual labels:  laravel, laravel-admin
Voyager Zh
㊙️voyager 的中文汉化版 基于laravel 的管理后台 权限控制,菜单,数据库手脚架,长期更新
Stars: ✭ 84 (-86.32%)
Mutual labels:  laravel, laravel-admin
Contentify
Contentify is an esports CMS based on the PHP framework Laravel
Stars: ✭ 189 (-69.22%)
Mutual labels:  laravel, laravel-admin
Laravel Starter Kit
Laravel 7.0~ Starter Kit Powered by VueJS + Material Design(Vuetify)
Stars: ✭ 281 (-54.23%)
Mutual labels:  laravel, laravel-admin

Laravel Admin Panel

An admin panel for managing users, roles, permissions & crud.

Requirements

Laravel >=5.5
PHP >= 7.0

Features

  • User, Role & Permission Manager
  • CRUD Generator
  • Activity Log
  • Page CRUD
  • Settings

Installation

  1. Run

    composer require appzcoder/laravel-admin
    
  2. Install the admin package.

    php artisan laravel-admin:install
    

    Service provider will be discovered automatically.

  3. Make sure your user model's has a HasRoles trait app/Models/User.php.

    class User extends Authenticatable
    {
        use Notifiable, HasRoles;
    
        ...
    
  4. You can generate CRUD easily through generator tool now.

Note: If you are using Laravel 7+ then scaffold the authentication with bootstrap for a better experience.

Usage

  1. Create some permissions.

  2. Create some roles.

  3. Assign permission(s) to role.

  4. Create user(s) with role.

  5. For checking authenticated user's role see below:

    // Add role middleware in app/Http/Kernel.php
    protected $routeMiddleware = [
        ...
        'role' => \App\Http\Middleware\CheckRole::class,
    ];
    
    // Check role anywhere
    if (Auth::check() && Auth::user()->hasRole('admin')) {
        // Do admin stuff here
    } else {
        // Do nothing
    }
    
    // Check role in route middleware
    Route::group(['namespace' => 'Admin', 'prefix' => 'admin', 'middleware' => ['auth', 'role:admin']], function () {
       Route::get('/', ['uses' => '[email protected]']);
    });
    
    // Check permission in route middleware
    Route::group(['namespace' => 'Admin', 'prefix' => 'admin', 'middleware' => ['auth', 'can:write_user']], function () {
       Route::get('/', ['uses' => '[email protected]']);
    });
    
  6. For checking permissions see below:

    if ($user->can('permission-name')) {
        // Do something
    }
    

Learn more about ACL from here

For activity log please read spatie/laravel-activitylog docs

Screenshots

users

activity log

generator

settings

Author

Sohel Amin ✉️ Email Me

License

This project is licensed under the MIT License - see the License File for details

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].