LR-Curso / admin-laravel by LeandroRolim

Package for laravel
2,704
2
2
Package Data
Maintainer Username: LeandroRolim
Maintainer Contact: leandro@viatechno.com.br (Leandro Rolim)
Package Create Date: 2016-07-10
Package Last Update: 2023-08-23
Home Page:
Language: Blade
License: MIT
Last Refreshed: 2025-02-17 03:03:09
Package Statistics
Total Downloads: 2,704
Monthly Downloads: 1
Daily Downloads: 0
Total Stars: 2
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

Latest Stable Version Total Downloads Latest Unstable Version License composer.lock Coverage Status Build Status Build Status Issue Count

Admin Laravel

Generate admin for Laravel

Feature Requests

###Installation

composer require lrcurso/admin-laravel

Or manually by modifying composer.json file:

{
    "require": {
        "lrcurso/admin-laravel": "0.*"
    }
}

run composer install

Then add Service provider to config/app.php

    'providers' => [
        // ...
        Lrcurso\Admin\Providers\AdminServiceProvider::class,
        Kris\LaravelFormBuilder\FormBuilderServiceProvider::class,
    ]

And Facade (also in config/app.php)

    'aliases' => [
        // ...
        'FormBuilder' => Kris\LaravelFormBuilder\Facades\FormBuilder::class
    ]

And add Middleware to app/Http/Kernel.php

    $routeMiddleware => [
        //...
        'auth.admin' => \Lrcurso\Admin\Middleware\Authenticate::class,
    ]

Last step:

    php artisan vendor:publish

##TODO

  • create Units Tests
  • create documentation (how to use)
  • add config for modifier the dashboard home (default: "DashBoardControler@index")
  • add config for modifier the route root (default: "\admin")