am try to echo blade html tag but it error.
help me for check my code please
echo "<td><a href="{{ URL::to('index/watch/$tmpd') }}">$tmpd</a></td>";
variable tmpd is value for my loop
From comments
Trying to echo this from within a foreach loop:
foreach ($words as $row) {
echo '<tr>';
$tmpd = $row['title'];
echo "<td><a href='watch/$tmpd'>$tmpd</a></td>";
}