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

14 lines
326 B
PHP

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