adminlte-laravel
adminlte-laravel copied to clipboard
Use loadRoutesFrom in adminlte ServiceProvider
See:
https://github.com/laravel/framework/blob/5.3/src/Illuminate/Support/ServiceProvider.php
/**
* Load the given routes file if routes are not already cached.
*
* @param string $path
* @return void
*/
protected function loadRoutesFrom($path)
{
if (! $this->app->routesAreCached()) {
require $path;
}
}