我的文件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');
}
}
我需要解决这个问题!
答案 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(){
}
}