| Package Data | |
|---|---|
| Maintainer Username: | htorkashvand |
| Maintainer Contact: | hamed15464@gmail.com (Hamed Torkashvand) |
| Package Create Date: | 2016-04-17 |
| Package Last Update: | 2016-04-17 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-06 15:07:54 |
| Package Statistics | |
|---|---|
| Total Downloads: | 21 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Administrator is an administrative interface builder for Laravel. With Administrator you can visually manage your Eloquent models and their relations, and also create stand-alone settings pages for storing site data and performing site tasks.
To install Administrator as a Composer package to be used with Laravel 5, simply run:
composer require htorkashvand/administrator
Once it's installed, you can register the service provider in config/app.php in the providers array:
'providers' => [
Frozennode\Administrator\AdministratorServiceProvider::class,
]
Then publish Administrator's assets with php artisan vendor:publish. This will add the file config/administrator.php. This config file is the primary way you interact with Administrator. This command will also publish all of the assets, views, and translation files.
for use first time :
1- add auth to laravel like: 'php artisan make:auth' ,
2- register user ... ,
3- add 'users' in 'administrator.php' Like :'menu' => ['users'] ,
4- add directory to config directory: 'administrator/settings' ,
5- add file users.php in directory administrator ,
6- config users for use in panel admin .
The complete docs for Administrator can be found at http://administrator.frozennode.com. You can also find the docs in the /src/docs directory.