I want to display todays date in date_created field when clicked to create page.
{!! Form::open(['route'=>'articles.store'])!!}
<div class="form-group">
<label><b>DATE CREATED</b></label>
{!! Form::text('date_created',null,array('class'=>'form-control date-picker')) !!}
</div>
{!! form::submit('Add',[' class'=>'btn btn-primary form-control'])!!}
{!! Form::close()!!}
You can use
{!! Form::text('date_created',
old('date_created',
Carbon\Carbon::today()->format('Y-m-d')),
['class'=>'form-control date-picker']) !!}
Just pass the value -
{!! Form::text(
'date_created',
date('Y-m-d'),
array('class'=>'form-control date-picker')
) !!}
DOCS
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With