MicroFrameWork/app/tables/columns/user/UserDeleteActionColumn.php

16 lines
373 B
PHP
Raw Normal View History

2024-07-25 16:15:18 +03:00
<?php
2024-08-30 16:14:31 +03:00
namespace app\tables\columns\user;
2024-07-25 16:15:18 +03:00
use Itguild\Tables\ActionColumn\ActionColumn;
class UserDeleteActionColumn extends ActionColumn
{
2024-07-26 16:09:06 +03:00
protected string $prefix = "/delete/";
2024-07-25 16:15:18 +03:00
public function fetch(): string
{
2024-07-26 16:09:06 +03:00
$link = $this->baseUrl . $this->prefix . $this->id;
2024-07-25 16:15:18 +03:00
return " <a href='$link' class='btn btn-danger'>Удалить</a> ";
}
}