_ _ _ __
/\ | | (_) (_)/ _|
/ \ __| |_ __ ___ _ _ __ _| |_ _ _
/ /\ \ / _` | '_ ` _ \| | '_ \| | _| | | |
/ ____ \ (_| | | | | | | | | | | | | | |_| |
/_/ \_\__,_|_| |_| |_|_|_| |_|_|_| \__, |
__/ |
|___/
Adminify creates an admin panel for your application by utilising your application's models.
To install the bundle either download and drag and drop it into your bundles folder or run the following on Artisan
php artisan bundle:install adminify
Pop the following in your application's bundles.php array
'adminify' => array('handles' => 'admin')
Ensure you've installed migrations and then run the following on Artisan
php artisan migrate adminify
Finally, pop a user in the database
php artisan adminify::setup firstname lastname username email@address.com password
You can also pass through an optional 5th argument of role; the default is admin for first setup.
When you're done you should have an admin panel at youapplication.com/admin
- Added console to Adminify
- Fixed issue with logviewer that caused it to break when no logs were present
- Changed the way assets are included
Added a log viewer to Adminify
Adminify now works on a different handle, hazzah!