FrozenNode / Laravel-Administrator

An administrative interface package for Laravel
http://administrator.frozennode.com/
MIT License
1.94k stars 503 forks source link

Laravel-Administrator and Laravel 5.2 #977

Open alur86 opened 8 years ago

alur86 commented 8 years ago

Hello,

I faced with the problem with usage Laravel-Administrator with the last version of Laravel. I tied to installed it and found that the ordinary login path doesn't worked. The installation procedure was teh standard.Any ideas?

Thanks, Alexander.

namreg commented 8 years ago

Have you executed php artisan make:auth?

alur86 commented 8 years ago

Yes, I did that all. It redirected instead of 'uri' => 'admin', to the standard dashboard.

namreg commented 8 years ago

provide your 'administrator.php' config, please

alur86 commented 8 years ago

<?php

return array(

/**
 * Package URI
 *
 * @type string
 */
'uri' => 'myadmin',

/**
 *  Domain for routing.
 *
 *  @type string
 */
'domain' => ' ',

/**
 *  Middleware for admin routing.
 *
 *  @type array
 */
'middleware' => array(),

/**
 * Page title
 *
 * @type string
 */
'title' => 'Admin',

/**
 * The path to your model config directory
 *
 * @type string
 */
'model_config_path' => config_path('administrator'),

/**
 * The path to your settings config directory
 *
 * @type string
 */
'settings_config_path' => config_path('administrator/settings'),

/**
 * The menu structure of the site. For models, you should either supply the name of a model config file or an array of names of model config
 * files. The same applies to settings config files, except you must prepend 'settings.' to the settings config file name. You can also add
 * custom pages by prepending a view path with 'page.'. By providing an array of names, you can group certain models or settings pages
 * together. Each name needs to either have a config file in your model config path, settings config path with the same name, or a path to a
 * fully-qualified Laravel view. So 'users' would require a 'users.php' file in your model config path, 'settings.site' would require a
 * 'site.php' file in your settings config path, and 'page.foo.test' would require a 'test.php' or 'test.blade.php' file in a 'foo' directory
 * inside your view directory.
 *
 * @type array
 *
 *  array(
 *      'E-Commerce' => array('collections', 'products', 'product_images', 'orders'),
 *      'homepage_sliders',
 *      'users',
 *      'roles',
 *      'colors',
 *      'Settings' => array('settings.site', 'settings.ecommerce', 'settings.social'),
 *      'Analytics' => array('E-Commerce' => 'page.ecommerce.analytics'),
 *  )
 */
'menu' => array('roles','users'),

/**
 * The permission option is the highest-level authentication check that lets you define a closure that should return true if the current user
 * is allowed to view the admin section. Any "falsey" response will send the user back to the 'login_path' defined below.
 *
 * @type closure
 */
'permission'=> function()
{
    return Auth::check();
},

/**
 * This determines if you will have a dashboard (whose view you provide in the dashboard_view option) or a non-dashboard home
 * page (whose menu item you provide in the home_page option)
 *
 * @type bool
 */
'use_dashboard' => false,

/**
 * If you want to create a dashboard view, provide the view string here.
 *
 * @type string
 */
'dashboard_view' => '',

/**
 * The menu item that should be used as the default landing page of the administrative section
 *
 * @type string
 */
'home_page' => 'users',

/**
 * The route to which the user will be taken when they click the "back to site" button
 *
 * @type string
 */
'back_to_site_path' => '/',

/**
 * The login path is the path where Administrator will send the user if they fail a permission check
 *
 * @type string
 */
'login_path' => 'auth/login',

/**
 * The logout path is the path where Administrator will send the user when they click the logout link
 *
 * @type string
 */
'logout_path' => false,

/**
 * This is the key of the return path that is sent with the redirection to your login_action. Session::get('redirect') will hold the return URL.
 *
 * @type string
 */
'login_redirect_key' => 'redirect',

/**
 * Global default rows per page
 *
 * @type int
 */
'global_rows_per_page' => 20,

/**
 * An array of available locale strings. This determines which locales are available in the languages menu at the top right of the Administrator
 * interface.
 *
 * @type array
 */
'locales' => array(),

);

namreg commented 8 years ago

try to add 'web' middleware to the middlewares list: middleware => ['web']

alur86 commented 8 years ago

Ok, now works well.Thank you very much.

namreg commented 8 years ago

good:)

jwsjack commented 7 years ago

Thank, you. I had the same issue with Laravel 5.2.