for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Encore\Admin\Form\Field;
use Encore\Admin\Form\Field;
class Divider extends Field
{
protected $title;
public function __construct($title = '')
$this->title = $title;
}
public function render()
if (empty($this->title)) {
return '<hr>';
return <<<HTML
<div style="height: 20px; border-bottom: 1px solid #eee; text-align: center;margin-top: 20px;margin-bottom: 20px;">
<span style="font-size: 18px; background-color: #ffffff; padding: 0 10px;">
{$this->title}
</span>
</div>
HTML;