Skip to content
Casey Ydenberg edited this page Jan 28, 2016 · 4 revisions

Upgrades

To 2.0.7

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',
]

To 2.0.1

  • 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'
    ],
Clone this wiki locally