for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Lagdo\UiBuilder\Element\Html;
use Lagdo\UiBuilder\Builder\Html\Element;
use Lagdo\UiBuilder\Element\TableInterface;
class TableElement extends Element implements TableInterface
{
/**
* @var string
*/
public static string $tag = 'table';
* @param bool $responsive
*
* @return static
public function responsive(bool $responsive = true): static
return $this;
}
* @param string $style
public function style(string $style): static