Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

lumen framework routing not working

Tags:

php

laravel

lumen

I use the Lumen framework for first time, the route / to my HomeController is not working.

This is my route.php:

$app->get('/', 'HomeController@index');

But I get the following error:

[2015-04-17 07:03:41] lumen.ERROR: exception 'ReflectionException' with message 'Class HomeController does not exist' in /Users/refear99/Web/qingsongchou_api/vendor/illuminate/container/Container.php:776

Stack trace:
#0 /Users/refear99/Web/qingsongchou_api/vendor/illuminate/container/Container.php(776): ReflectionClass->__construct('HomeController')
#1 /Users/refear99/Web/qingsongchou_api/vendor/illuminate/container/Container.php(656): Illuminate\Container\Container->build('HomeController', Array)
#2 /Users/refear99/Web/qingsongchou_api/vendor/laravel/lumen-framework/src/Application.php(358): Illuminate\Container\Container->make('HomeController', Array)
#3 /Users/refear99/Web/qingsongchou_api/vendor/laravel/lumen-framework/src/Application.php(1184): Laravel\Lumen\Application->make('HomeController')
#4 /Users/refear99/Web/qingsongchou_api/vendor/laravel/lumen-framework/src/Application.php(1157): Laravel\Lumen\Application->callControllerAction(Array)
#5 /Users/refear99/Web/qingsongchou_api/vendor/laravel/lumen-framework/src/Application.php(1142): Laravel\Lumen\Application->callActionOnArrayBasedRoute(Array)
#6 /Users/refear99/Web/qingsongchou_api/vendor/laravel/lumen-framework/src/Application.php(1120): Laravel\Lumen\Application->handleArrayBasedFoundRoute(Array)
#7 /Users/refear99/Web/qingsongchou_api/vendor/laravel/lumen-framework/src/Application.php(1058): Laravel\Lumen\Application->handleFoundRoute(Array)
#8 /Users/refear99/Web/qingsongchou_api/vendor/laravel/lumen-framework/src/Application.php(1006): Laravel\Lumen\Application->dispatch(NULL)
#9 /Users/refear99/Web/qingsongchou_api/public/index.php(28): Laravel\Lumen\Application->run()
#10 {main}  

This is my HomeController.php in /app/Http/Controllers/

<?php namespace App\Http\Controllers;

class HomeController extends Controller {

public function index()
{
    echo 123;
}

}

What could the problem be?

like image 548
refear99 Avatar asked Apr 17 '15 07:04

refear99


2 Answers

You have to use the fully qualified classname:

$app->get('/', 'App\Http\Controllers\HomeController@index');

OR wrap all routes in a group (which is actually how it's done under the hood in Laravel 5)

$app->group(['namespace' => 'App\Http\Controllers'], function($group){

    $group->get('/', 'HomeController@index');
    $group->get('foo', 'FooController@index');

});
like image 182
lukasgeiter Avatar answered Sep 20 '22 22:09

lukasgeiter


It appears to be undocumented right now, but you need to use the full namespace path to the controller.

So your route would look like this:

$app->get('/', 'App\Http\Controllers\HomeController@index');

The difference lies in the RouteServiceProvider that ships with Laravel, which can be found in app/Providers/RouteServiceProvider.php, check out the map method, it looks as follows

$router->group(['namespace' => $this->namespace], function($router)
{
    require app_path('Http/routes.php');
});

So all of your application routes are actually grouped under a default namespace, which is usually App\Http\Controllers.

Hope that helps!

like image 27
Wayne Ashley Berry Avatar answered Sep 23 '22 22:09

Wayne Ashley Berry