Можете ли вы попробовать это
Метод первый
$query = DB::table( 'tickets')
->where( 'tic_status_id' ,'=',65)
->whereNull( 'tic_escalation_date1')
->orWhere( 'tic_escalation_date1', '<', "DATE('2019-06-22 13:00:00')")
->whereNull( 'tic_escalation_date2')
->orWhere( 'tic_escalation_date2', '<', "DATE('2019-06-22 13:00:00')")
->whereNull( 'tic_escalation_date3')
->orWhere( 'tic_escalation_date3', '<', "DATE('2019-06-22 13:00:00')");
Метод второй I am Not Sure About the this query will Work Fine
$query = DB::table( 'tickets')
->where( 'tic_status_id' ,'=',65)
->whereNull( 'tic_escalation_date1')
->orWhereDate( 'tic_escalation_date1', '<', "('2019-06-22 13:00:00')")
->whereNull( 'tic_escalation_date2')
->orWhereDate( 'tic_escalation_date2', '<', "DATE('2019-06-22 13:00:00')")
->whereNull( 'tic_escalation_date3')
->orWhereDate( 'tic_escalation_date3', '<', "DATE('2019-06-22 13:00:00')");