2020-07-12 18:36:12 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\View\Components;
|
|
|
|
|
|
|
|
use Illuminate\View\Component;
|
|
|
|
|
|
|
|
class Form extends Component
|
|
|
|
{
|
2020-10-21 00:29:50 +00:00
|
|
|
|
2020-07-12 18:36:12 +00:00
|
|
|
public $formFields;
|
|
|
|
|
2020-10-21 00:01:41 +00:00
|
|
|
|
2020-10-21 00:29:50 +00:00
|
|
|
public $disableFields = false;
|
2020-07-12 18:36:12 +00:00
|
|
|
/**
|
|
|
|
* Create a new component instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct($disableFields = false)
|
|
|
|
{
|
2020-10-21 00:29:50 +00:00
|
|
|
$this->disableFields = $disableFields;
|
2020-07-12 18:36:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the view / contents that represent the component.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\View\View|string
|
|
|
|
*/
|
|
|
|
public function render()
|
|
|
|
{
|
|
|
|
return view('components.form');
|
|
|
|
}
|
|
|
|
}
|