Dev
Dev

Reputation: 467

Rails 6: make number_to_phone clcikable

How can I make the following number_to_phone clickable in to order dial this phone number?

<%= number_to_phone(@business.phone_number, area_code: true) %>

Upvotes: 1

Views: 230

Answers (1)

Jean-Michel Gigault
Jean-Michel Gigault

Reputation: 199

What about:

formatted_phone_number = number_to_phone(@business.phone_number, area_code: true)

link_to formatted_phone_number, "tel:#{formatted_phone_number}"

Upvotes: 3

Related Questions