Mohammad Tariq
Mohammad Tariq

Reputation: 101

How to I correct this Url(Route)

Problem I want to make route of view abc.blade.php and with my this coad route not hit

        echo '<div class="col-md-4 grid-top grid-in thumbnail">
        <a href="{{ url (/singol) }}" class="b-link-stripe b-animate-gothickbox">     

<img width="250" class="img-responsive" src="'.$image.'" alt="Random image"/>
   <div class="b-wrapper">
   <h3 class="b-animate b-from-left    b-delay03 ">
      <span>New Product</span>  
   </h3>
   </div>
       </a>

Upvotes: 2

Views: 28

Answers (1)

Laravel User
Laravel User

Reputation: 1129

Just use href='/singol' and it will work.

Upvotes: 1

Related Questions