kupang lie
kupang lie

Reputation: 137

how to redirect to external url from view? Laravel 5.2

I want to redirect my image when it clicked.. so here is my code in view

<a href="www.accorhotels.com" class="work-ext-link">

but its always error with the route, is there any solution to directly go to that website without using route and controller?

Upvotes: 0

Views: 718

Answers (1)

Felippe Duarte
Felippe Duarte

Reputation: 15131

Use "http" before:

<a href="http://www.accorhotels.com" class="work-ext-link">my link</a>

Upvotes: 1

Related Questions