2

This is My mutator in my model..

protected $dates = ['closer_date','final_submission_date','start_date'];

This is a field where I want to set the dates in the fields retrieving record from database.

<input class="form-control" type="date" name="start_date" value="{{ $topic->start_date}}" id = "start_date" onkeyup = "Validate(this)" required min=<?php
                                    echo date('Y-m-d');
                                    ?> />

1 Answers1

2

use format() to set the format

{{ $topic->start_date->format('Y-m-d')}}

in Your code

<input class="form-control" type="date" name="start_date" value="{{ $topic->start_date->format('Y-m-d)}}" id = "start_date" onkeyup = "Validate(this)" required min=<?php
                                echo date('Y-m-d');
                                ?> />

Hope this helps

Adnan Mumtaz
  • 12,573
  • 5
  • 32
  • 59