Document form component styling..

This commit is contained in:
Cüneyt Şentürk
2020-12-28 16:21:09 +03:00
parent f8d0075f79
commit 47917a0cc8
16 changed files with 749 additions and 1028 deletions

View File

@ -2,37 +2,11 @@
namespace App\View\Components\Documents\Form;
use Illuminate\View\Component;
use App\Abstracts\View\Components\DocumentForm as Component;
use App\Models\Setting\Category;
class Advanced extends Component
{
/** @var string */
public $type;
/** @var bool */
public $hideRecurring;
/** @var bool */
public $hideCategory;
/** @var bool */
public $hideAttachment;
/**
* Create a new component instance.
*
* @return void
*/
public function __construct(string $type, bool $hideRecurring = false, bool $hideCategory = false, bool $hideAttachment = false)
{
$this->type = $type;
$this->hideRecurring = $hideRecurring;
$this->hideCategory = $hideCategory;
$this->hideAttachment = $hideAttachment;
}
/**
* Get the view / contents that represent the component.
*