dev-master
9999999-devA simple, clean admin package for Laravel 4 with no other dependencies.
MIT
The Requires
- php >=5.3.0
The Development Requires
by David Weber
laravel acl auth admin modules
Wallogit.com
2017 © Pedro Peláez
A simple, clean admin package for Laravel 4 with no other dependencies.
A WIP admin package for Laravel 4 that has no dependencies other than Laravel 4. I would not call this production ready just yet, I am still finishing up some of the core modules., (*1)
This is my first package and experience with Laravel, having switched from FuelPHP. I started this project to avoid having to create a new admin interface for each project, as I was previously doing. When I started this there weren't many admin packages for Laravel 4, and the few that there was were dependent on third-party packages or had jQuery UI or other components built into the frontend already. While not re-inventing the wheel is great, I am new to Laravel and want to use as much of the core code as possible and avoid third-party packages., (*2)
All feedback is welcome and appreciated., (*3)
Add the package to the require array in the file /composer.json:, (*4)
"david-weber/dominion": "dev-master", (*5)
Change the model value in the file /app/config/auth.php to the following:, (*6)
'DavidWeber\Dominion\Models\User',, (*7)
Add the following string to the providers array in the file /app/config/app.php:, (*8)
'DavidWeber\Dominion\DominionServiceProvider',, (*9)
Run the following commands from your terminal / command prompt:, (*10)
Publish Config, (*11)
php artisan config:publish david-weber/dominion, (*12)
Publish Assets, (*13)
php artisan asset:publish "david-weber/dominion", (*14)
Run Migrations, (*15)
php artisan migrate --package="david-weber/dominion", (*16)
Run Seeders, (*17)
php artisan db:seed --class="DavidWeber\Dominion\Seeders\DatabaseSeeder", (*18)
You can now browse to http://YourServer:ServerPort/AppRoot/admin, (*19)
The default credentials are:, (*20)
Username: admin, (*21)
Password: password, (*22)
'dominion::templates.admin'
Coming Soon..., (*23)
A simple, clean admin package for Laravel 4 with no other dependencies.
MIT
laravel acl auth admin modules