在我的 route.php 中,我有:
Route::group(array('prefix'=>'admin'),function(){
Route::resource('products','AdminProductsController');
});
但是当我执行STORE
一个 POST 函数时,它会抛出一个MethodNotAllowedHttpException
但它适用于所有GET
函数。
我的表单的action
值为{{ URL::to('admin/products/store') }}
.
AdminProductsController.php 在controller/admin
目录中。
请帮忙。
控制器:
<?php
class AdminProductsController extends BaseController {
/**
* Display a listing of the resource.
*
* @return Response
*/
public function index()
{
return 'Yow';
}
/**
* Show the form for creating a new resource.
*
* @return Response
*/
public function create()
{
$url = URL::to('admin/products/store');
return<<<qaz
<form method="post" action="{$url}">
<input type="hidden" name="hehehe" value="dfsgg" />
<input type="submit" />
</form>
qaz;
}
/**
* Store a newly created resource in storage.
*
* @return Response
*/
public function store()
{
return 'whahaha';
}
/**
* Display the specified resource.
*
* @param int $id
* @return Response
*/
public function show($id)
{
return $id;
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return Response
*/
public function edit($id)
{
return $id;
}
/**
* Update the specified resource in storage.
*
* @param int $id
* @return Response
*/
public function update($id)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return Response
*/
public function destroy($id)
{
//
}
}