Please can solve this select:
@d_repeats = Event.where(:repeat => 'daily', :shedule < date.end_of_month )
Here :shedule < date.end_of_month
is not correct. How it should be?
You can do
@d_repeats = Event.where(:repeat => 'daily').where("schedule < ?", date.end_of_month )
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With