Package Data | |
---|---|
Maintainer Username: | dpweberza |
Maintainer Contact: | dpweberza@gmail.com (David Weber) |
Package Create Date: | 2013-09-17 |
Package Last Update: | 2017-05-19 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-22 03:13:58 |
Package Statistics | |
---|---|
Total Downloads: | 94 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 7 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
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.
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.
All feedback is welcome and appreciated.
###Features
###Road Map
###Getting Started ####Configuration
Add the package to the require array in the file /composer.json:
"david-weber/dominion": "dev-master"
Change the model value in the file /app/config/auth.php to the following:
'DavidWeber\Dominion\Models\User',
Add the following string to the providers array in the file /app/config/app.php:
'DavidWeber\Dominion\DominionServiceProvider',
####Installation Run the following commands from your terminal / command prompt:
Publish Config
php artisan config:publish david-weber/dominion
Publish Assets
php artisan asset:publish "david-weber/dominion"
Run Migrations
php artisan migrate --package="david-weber/dominion"
Run Seeders
php artisan db:seed --class="DavidWeber\Dominion\Seeders\DatabaseSeeder"
####Admin Login You can now browse to http://YourServer:ServerPort/AppRoot/admin
The default credentials are:
Username: admin
Password: password
###Customization
###Extending The Admin Interface ####Modules
'dominion::templates.admin'
###Theming The Admin Interface Coming Soon...