lasthourcloud/app/View/Components/Forms/Button.php

30 lines
617 B
PHP
Raw Normal View History

2023-07-13 11:16:24 +00:00
<?php
namespace App\View\Components\Forms;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class Button extends Component
{
/**
* Create a new component instance.
*/
public function __construct(
2024-06-10 20:43:34 +00:00
public bool $disabled = false,
public bool $noStyle = false,
public ?string $modalId = null,
public string $defaultClass = 'button'
2023-08-11 18:48:52 +00:00
) {
2023-07-28 11:31:47 +00:00
if ($this->noStyle) {
2024-06-10 20:43:34 +00:00
$this->defaultClass = '';
2023-07-28 11:31:47 +00:00
}
2023-07-13 11:16:24 +00:00
}
public function render(): View|Closure|string
{
return view('components.forms.button');
}
}