MicroFrameWork/app/tables/columns/UserEditActionColumn.php

17 lines
461 B
PHP
Raw Normal View History

2024-07-24 16:29:00 +03:00
<?php
namespace app\tables\columns;
use Itguild\Tables\ActionColumn\ActionColumn;
class UserEditActionColumn extends ActionColumn
{
protected string $prefix = "/";
public function fetch(): string
{
// $link = $this->baseUrl . $this->prefix . $this->id . $this->prefix . "update";
2024-07-26 12:42:44 +03:00
$link = $this->baseUrl . $this->prefix . $this->id;
2024-07-25 16:15:18 +03:00
return " <a href='$link' class='btn btn-success'>Редактировать</a> ";
2024-07-24 16:29:00 +03:00
}
}