Files
tables/src/ActionColumn/EditActionColumn.php
2024-07-16 13:12:40 +03:00

16 lines
337 B
PHP

<?php
namespace Itguild\Tables\ActionColumn;
class EditActionColumn extends ActionColumn
{
protected string $prefix = "/edit/";
public function fetch(): string
{
$link = $this->baseUrl . $this->prefix . $this->id;
return " <a href='$link' class='btn btn-primary'>Редактировать</a> ";
}
}