MicroFrameWork/app/tables/columns/UserDeleteActionColumn.php

17 lines
411 B
PHP
Raw Normal View History

2024-07-25 16:15:18 +03:00
<?php
namespace app\tables\columns;
2024-07-26 11:57:05 +03:00
use app\helpers\Debug;
2024-07-25 16:15:18 +03:00
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> ";
}
}