fix to psr4

This commit is contained in:
2024-07-15 16:25:03 +03:00
parent f9fc6b9f17
commit 4bdd883d67
8 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<?php
namespace Itguild\Tables\ActionColumn;
class ViewActionColumn extends ActionColumn
{
protected string $prefix = "/form-item/";
public function fetch(): string
{
$link = $this->baseUrl . $this->prefix . $this->id;
return " <a href='$link' class='btn btn-primary'>Просмотр</a> ";
}
}