for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\Html\Elements;
use Spatie\Html\BaseElement;
class Label extends BaseElement
{
protected $tag = 'label';
/**
* @param string|null $for
*
* @return static
*/
public function for($for)
return $this->attribute('for', $for);
}