Support the ongoing development of Laravel.io →
Requests Input
Last updated 1 year ago.
0

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 ?

Last updated 1 year ago.
0

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');
	}
}
Last updated 1 year ago.
0

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, :)

Last updated 1 year ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.