Search code examples
phplaravellaravelcollective

Put a Max value in time input (Laravel Collective)


Does anyone know how to put a maximum value for a time input in Laravel Collective? I have tried this but it doesn't work:

{!!Form::time('tiempo[]', 'max="04:00"')!!}

Solution

  • Pass your options as the third parameter in an array. The second argument is the value of the input.

    {!! Form::time('tiempo[]', null, ['max' => '04:00']) !!}