for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ProtoneMedia\LaravelFormComponents\Components;
class FormLabel extends Component
{
public string $label;
/**
* Create a new component instance.
*
* @return void
*/
public function __construct(string $label = '')
$this->label = $label;
}