I'm using Laravel 4 and I'm trying to change the laravel blade link to use a normal html link.
My blade link
{{ HTML::link(seoLink($cat->id), $cat->title) }}
My html link
<a href="{{ $cat->id }}" title="{{ $cat->title }}"><img src={{ "category_images/$catImg" }}></a>
The problem I'm having is that I can't get the function seoLink to be in the html link.
<a href="{{ seoLink($cat->id) }}" title="{{ $cat->title }}"><img src={{ "category_images/".$catImg }}></a>
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community