I have a route that should generate an href for an anchor tag but I am getting no href:
<a href="" style="color:white !important" class="btn btn-info postlist">Update</a>
My code for above is :
data[i]["confirm"] = '<a href="<?=route_to('updatePost', 1) ?>" style="color:white !important" class="btn btn-info postlist">Update</a>';
My route is :
//$routes->add('post/(:id)', 'App/Controllers/Post::updatepost/$1');
$routes->add('post/(:id)', 'Post::updatepost/$1', ['as' => 'updatePost']);
I am expecting something like this
Noted: tried the unnamed and named way both didnt generate any href