The default method for Form::open() is POST, not GET.
So, first try
Route::post('test', function() { ... });
or, alternatively
Form::open(array('url' => 'test', 'method' => 'get'))
PS: it's just amazing how unescaped html in this thread makes the entire forum a jQuery Mobile site, with ajax navigation and css stuff... too bad they're going to fix it! :)
popolla said:
The default method for Form::open() is POST, not GET.
So, first tryRoute::post('test', function() { ... });
or, alternatively
Form::open(array('url' => 'test', 'method' => 'get'))
PS: it's just amazing how unescaped html in this thread makes the entire forum a jQuery Mobile site, with ajax navigation and css stuff... too bad they're going to fix it! :)
Haha yes it is funny. I thought the site kinda looked strange :P
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community