We're going to need more info.
How do you send your POST data and what do you post?
Can you show us your fooController ?
alifattahi said:
JoolsMcFly said:
We're going to need more info.
How do you send your POST data and what do you post?
Can you show us your fooController ?
here is my post form
<form action="http://test.com/foor/bar/baz/" method="POST">
<input type="hidden" value="xx" name="key1"/>
<input type="hidden" value="yyy" name="key2" />
</form>
and it's my BarController
"Foo" is the prefix .
class BarController extends BaseController
{
function baz()
{
return View::make('foo');
}
}
Thanks to all , l find the problem , I think it's a bug in laravel the problem was for a "/" in end of url in form action url :-| in other word by changin the
action="http://test.com/foor/bar/baz/"
to
action="http://test.com/foor/bar/baz"
and remove "/" in end of url I solve the problem, :)
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community