Laravel – Carbon: how compare two dates (string) without timezone?
i'm having a trouble on comparing two dates in laravel. In my app i have a date field to compare: // example $order_date = Carbon::now()->format('Y-m-d') // returns "2022-11-30" $now = Carbon::now() // returns an object with date at the bottom…