Laravel 6 – 8
PHP 7.2+
No commit activity in last 2 years
No release in over 2 years
Package for laravel
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

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")