Laravel: Submitting my dates to my database

前端 未结 1 405
暗喜
暗喜 2021-01-26 15:24

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

相关标签:
1条回答
  • 2021-01-26 15:38

    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.
    
    0 讨论(0)
提交回复
热议问题