1
I would like to change the value of the date field at the time of a data edit. I can bring all values except the date.
I’m using the Form:: of Laravel:
{!! Form::label('dtemissao','Data de Emissão') !!}
{!! Form::input('date','dtemissao',$FinContaspagar[0]["DtEmissao"]->format("d/m/Y"), ['class' => 'form-control']) !!}<br />
I’m using the $FinContaspagar[0]["DtEmissao"]->format("d/m/Y")
to change the default value of dd/mm/yyyy, but I was not successful in the change of value.
Does anyone have any solution?
It worked @Virgilio Novic thanks!
– Felipe Nunes