I have declared a route group in laravel/lumen like so:
$app->group(['middleware' => 'auth'], function () use ($app) {
$app->get('/details', 'UserController@details');
});
all contents of route file web.php are like so:
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It is a breeze. Simply tell Lumen the URIs it should respond to
| and give it the Closure to call when that URI is requested.
|
*/
$app = app();
$router->get('/', function () use ($router) {
return $router->app->version();
});
$app->group(['middleware' => 'auth'], function () use ($app) {
$app->get('/details', 'UserController@details');
});
on making a call to http://THE_URL/
I get an error Call to undefined method Laravel\Lumen\Application::group()
How do I add route group with a middleware ?
$app = app(); $router->get('/', function () use ($router) { return $router->app->version(); });
? – Oluwatobi Samuel Omisakin$app = app();
as it was not found – Shakti Phartiyal$app
variable. Laravel knows how they managed to create that so you can use. At least on my lumen project, this variable is ready for use. – Oluwatobi Samuel Omisakin