Level 51
'But that issue still remains as well' - I have used Tinkerwell and tested the proposed solution above for filtering by date. Did this snippet not solve that problem?
return DB::table('appcal')
->select('monthyear','appdate')
->whereDate('appdate', '>=', Carbon::createFromFormat('Y-m-d', '2018-04-01'))
->get();