Laravel Carbon See if date is in the past

前端 未结 3 1938
慢半拍i
慢半拍i 2020-12-17 08:34

I am very confused by this, maybe its something simple I am not seeing. If I want to see if a date is in the past of today I should be able to do something like this?

3条回答
  •  自闭症患者
    2020-12-17 09:18

    There's built-in Carbon method isPast so you can use:

    $league->date_start->isPast()
    

    to determine if date is in past or not

提交回复
热议问题