-
Notifications
You must be signed in to change notification settings - Fork 114
Upgrades
Casey Ydenberg edited this page Jan 28, 2016
·
4 revisions
In your published config file, add a new prefix
config key and set the value to admin
. See this example for more information.
// File: config/admin.php
return [
'prefix' => 'admin',
]
- Publish new language files from this package by running this following command.
php artisan vendor:publish --tag="lang" --provider="Pingpong\Admin\AdminServiceProvider"
- Added this new config keys to your published config files from this package.
// file: config/admin.php
'views' => [
'layout' => 'admin::layouts.master',
'post' => 'admin::article'
],