for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebTheory\Saveyour\Elements;
use WebTheory\Html\AbstractHtmlElement;
use WebTheory\Saveyour\Concerns\RendersOptionsTrait;
class Datalist extends AbstractHtmlElement
{
use RendersOptionsTrait;
/**
*
*/
protected function renderHtmlMarkup(): string
return $this->tag('datalist', $this->renderSelection(), $this->attributes);
}