Hello Tim, i don't know if you solved your problem in the meanwhile, i tried it today and it works:
{{-- test.blade.php --}}
{{ Form::open(); }}
{{ Form::text('someInput[]'); }}
{{ Form::text('someInput[]'); }}
{{ Form::submit('send'); }}
{{ Form::close(); }}
<pre><?php print_r(Input::get('someInput')); ?></pre>
// routes.php
Route::get( 'test', function(){ return View::make('testview'); });
Route::post( 'test', function(){ return View::make('testview'); });
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community