for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Forms\Builders;
use App\Refn;
use LaravelEnso\Forms\Services\Form;
class RefnForm
{
protected const TemplatePath = __DIR__.'/../Templates//refn.json';
protected Form $form;
public function __construct()
$this->form = new Form(static::TemplatePath);
}
public function create()
return $this->form->create();
public function edit(Refn $refn)
return $this->form->edit($refn);