Formulario
Código PHP:
Ver original
@for($i=0; $i<=5; $i++) Inicio {{ Form::text('inicio[]') }}<br> Fin {{ Form::text('porcentaje[]',Input::old('porcentaje')) }}<br> @endfor {{ Form::close() }} @if ($errors->any()) <ul> </ul> @endif
Controlador
Código PHP:
Ver original
public function store() { $porcentaje = Input::get('porcentaje'); foreach ($porcentaje as $key => $value) { $validator = Validator::make( ); } if ($validator->fails()) { return Redirect::back()->withErrors($validator)->withInput(); } }
Obtengo este error:
Cita:
ErrorException
htmlentities() expects parameter 1 to be string, array given
ErrorException
htmlentities() expects parameter 1 to be string, array given