backend/app/tables/columns/UserDeleteActionColumn.php
2024-07-26 11:57:05 +03:00

17 lines
411 B
PHP

<?php
namespace app\tables\columns;
use app\helpers\Debug;
use Itguild\Tables\ActionColumn\ActionColumn;
class UserDeleteActionColumn extends ActionColumn
{
protected string $prefix = "/";
public function fetch(): string
{
$link = $this->baseUrl . $this->prefix . "delete" . $this->prefix . $this->id;
return " <a href='$link' class='btn btn-danger'>Удалить</a> ";
}
}