Package Data | |
---|---|
Maintainer Username: | ferryvg |
Maintainer Contact: | owl.sleeping@yahoo.com (Sleeping Owl) |
Package Create Date: | 2016-01-28 |
Package Last Update: | 2016-01-28 |
Home Page: | http://sleeping-owl.github.io/ |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-14 15:10:35 |
Package Statistics | |
---|---|
Total Downloads: | 14 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Note: this is development version. If you are looking for stable version check out master branch.
SleepingOwl Admin is administrative interface builder for Laravel.
It includes:
Require this package in your composer.json and run composer update:
"sleeping-owl/admin": "dev-development"
After composer update, add service providers to the config/app.php
'SleepingOwl\Admin\AdminServiceProvider',
Add this to the facades in config/app.php
:
'Admin' => 'SleepingOwl\Admin\Admin',
'AdminAuth' => 'SleepingOwl\AdminAuth\Facades\AdminAuth',
'Column' => 'SleepingOwl\Admin\Columns\Column',
'ColumnFilter' => 'SleepingOwl\Admin\ColumnFilters\ColumnFilter',
'Filter' => 'SleepingOwl\Admin\Filter\Filter',
'AdminDisplay' => 'SleepingOwl\Admin\Display\AdminDisplay',
'AdminForm' => 'SleepingOwl\Admin\Form\AdminForm',
'AdminTemplate' => 'SleepingOwl\Admin\Templates\Facade\AdminTemplate',
'FormItem' => 'SleepingOwl\Admin\FormItems\FormItem',
Run this command in terminal (if you want to know what exactly this command makes, see install command documentation):
$ php artisan admin:install
Admin was written by Sleeping Owl for the Laravel framework and is released under the MIT License. See the LICENSE file for details.