I am using Bootstrap DatetimePicker and I can select a date and time.
The problem is when I store the date and time in the database and try to show the value in DateTime Picker text field it's not showing the value. Even it's not showing the manual date time. Why it's not showing??
if you use Mysql the DATETIME - format is YYYY-MM-DD HH:MI:SS. You need to format it on your view or in your controller, before using it in bootstrap. You can use for it Carbon API in your view like that: {{Carbon::createFromFormat('m/d/Y h:i a', $meetings->endDate)}}