I\'m simply trying to submit my dates that are selected from a drop down calender to submit them to my database. Everything else is submitted. Also I will provide screenshots of
use the Carbon class and to something like this
above your class file
use Carbon\Carbon; class YouClassHereController ... $order->checkIn = Carbon::parse($request->input('checkIn')); //it will create to date class.