# laravel-admin **Repository Path**: 295047320/laravel-admin ## Basic Information - **Project Name**: laravel-admin - **Description**: Build a full-featured administrative interface in ten minutes - **Primary Language**: PHP - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2017-03-22 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: backend **Tags**: None ## README laravel-admin ===== [![Build Status](https://travis-ci.org/z-song/laravel-admin.svg?branch=master)](https://travis-ci.org/z-song/laravel-admin) [![StyleCI](https://styleci.io/repos/48796179/shield)](https://styleci.io/repos/48796179) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/z-song/laravel-admin/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/z-song/laravel-admin/?branch=master) [![Packagist](https://img.shields.io/packagist/l/encore/laravel-admin.svg?maxAge=2592000)](https://packagist.org/packages/encore/laravel-admin) [![Total Downloads](https://img.shields.io/packagist/dt/encore/laravel-admin.svg?style=flat-square)](https://packagist.org/packages/encore/laravel-admin) [![Awesome Laravel](https://img.shields.io/badge/Awesome-Laravel-brightgreen.svg)](https://github.com/z-song/laravel-admin) `laravel-admin` is administrative interface builder for laravel which can help you build CRUD backends just with few lines of code. [Demo](http://120.26.143.106/admin) use `username/password:admin/admin` Inspired by [SleepingOwlAdmin](https://github.com/sleeping-owl/admin) and [rapyd-laravel](https://github.com/zofe/rapyd-laravel). [Documentation](http://z-song.github.io/laravel-admin/) | [中文文档](http://z-song.github.io/laravel-admin/#/zh/) Screenshots ------------ ![laravel-admin](https://cloud.githubusercontent.com/assets/1479100/19625297/3b3deb64-9947-11e6-807c-cffa999004be.jpg) Installation ------------ First, install laravel, and make sure that the database connection settings are correct. ``` Laravel 5.1, not maintained composer require encore/laravel-admin "1.1.*" Laravel 5.2 composer require encore/laravel-admin "1.2.*" Laravel 5.3 composer require encore/laravel-admin "1.3.*" Laravel 5.4 composer require encore/laravel-admin "1.4.*" ``` In`config/app.php`add`ServiceProvider`: ``` Encore\Admin\Providers\AdminServiceProvider::class ``` Then run these commands to publish assets and config: ``` php artisan vendor:publish --tag=laravel-admin ``` After run command you can find config file in `config/admin.php`, in this file you can change the install directory,db connection or table names. At last run following command to finish install. ``` php artisan admin:install ``` Open `http://localhost/admin/` in browser,use username `admin` and password `admin` to login. Default Settings ------------ The file in `config/admin.php` contains an array of settings, you can find the default settings in there. Other ------------ `laravel-admin` based on following plugins or services: + [Laravel](https://laravel.com/) + [AdminLTE](https://almsaeedstudio.com/) + [Datetimepicker](http://eonasdan.github.io/bootstrap-datetimepicker/) + [font-awesome](http://fontawesome.io) + [moment](http://momentjs.com/) + [Google map](https://www.google.com/maps) + [Tencent map](http://lbs.qq.com/) + [bootstrap-fileinput](https://github.com/kartik-v/bootstrap-fileinput) + [jquery-pjax](https://github.com/defunkt/jquery-pjax) + [Nestable](http://dbushell.github.io/Nestable/) + [toastr](http://codeseven.github.io/toastr/) + [X-editable](http://github.com/vitalets/x-editable) + [bootstrap-number-input](https://github.com/wpic/bootstrap-number-input) + [fontawesome-iconpicker](https://github.com/itsjavi/fontawesome-iconpicker) License ------------ `laravel-admin` is licensed under [The MIT License (MIT)](LICENSE).