Laravel 4错误Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException

时间:2014-09-21 06:24:03

标签: php laravel laravel-4

我的文件Routes.php中有这段代码

路线::控制器(' /货物/ prueba'' PruebaController&#39);

我的文件PruebaController有这个:

<?php
class PruebaController extends BaseController {
    protected $layout = 'layouts.master';
    public function getTipo(){
        //$datos=TipoUsuario::all();
        return View::make('cargo.prueba.pbd');
    }
}

我需要解决这个问题!

1 个答案:

答案 0 :(得分:0)

由于路由声明中的根URL/cargo/prueba,因此要调用getTipo()控制器中的PruebaController方法,您的URL就是:< / p>

yourdomain.com/cargo/prueba/tipo

因此,如果您从终端/命令提示符运行php artisan routes,那么您将找到答案;它将显示URL以访问您的方法,并在下面给出:

URL                                                      | Action
------------------------------------------------------------------------------------
cargo/prueba/tipo/{one?}/{two?}/{three?}/{four?}/{five?} | PruebaController@getTipo

所以课程应该是这样的:

class PruebaController extends BaseController {

    public function getTipo(){

    }
}