htorkashvand/administrator

A database interface package for Laravel

v1.0.0 2016-04-17 07:45 UTC

This package is not auto-updated.

Last update: 2024-05-03 16:49:16 UTC


README

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.

Build Status

68747470733a2f2f7261772e6769746875622e636f6d2f46726f7a656e4e6f64652f4c61726176656c2d41646d696e6973747261746f722f6d61737465722f6578616d706c65732f696d616765732f6f766572766965772e6a7067

Composer

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 .

Documentation

The complete docs for Administrator can be found at http://administrator.frozennode.com. You can also find the docs in the /src/docs directory.