2 回答
TA贡献1799条经验 获得超6个赞
该错误是不言自明的,您尚未为您的函数定义路径prdtview。请记住,每当您创建资源控制器并定义其路由时,就会自动创建以下函数及其路由。
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function show($id)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function edit($id)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(Request $request, $id)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
//
}
对于您希望路由使用的任何其他方法,您必须创建一个方法并且必须为其定义一个路由,就像您的prdtview函数必须显式定义一个路由一样。
Route::get('/prdtview/{id}','UserProductController@prdtview')->name('userproduct.prdtview);
现在,当请求到达此路由时,它将被转发到您的prdtview函数。
您现在可以在 Blade 中调用您的路线,例如
route('userproduct.prdtview', ['id' => $sub_cat->id]);
- 2 回答
- 0 关注
- 123 浏览
添加回答
举报