PATH:
home
/
centosnipponia
/
public_html
/
apptt
/
vendor
/
jeroennoten
/
laravel-adminlte
/
src
/
View
/
Components
/
Form
<?php namespace JeroenNoten\LaravelAdminLte\View\Components\Form; use Illuminate\View\Component; use JeroenNoten\LaravelAdminLte\Helpers\UtilsHelper; class Button extends Component { /** * The visible label (text) for the button. * * @var string */ public $label; /** * The button type ('button', 'submit', 'reset'). Similar to the html type * attribute but with a default value. * * @var string */ public $type; /** * The button style theme. One of the available AdminLTE theme: primary, * secondary, info, warning, danger, success, dark, etc. * * @var string */ public $theme; /** * A fontawesome icon for the button. * * @var string */ public $icon; /** * Create a new component instance. * * @return void */ public function __construct( $label = null, $type = 'button', $theme = 'default', $icon = null ) { $this->label = UtilsHelper::applyHtmlEntityDecoder($label); $this->type = $type; $this->theme = $theme; $this->icon = $icon; } /** * Get the view / contents that represent the component. * * @return \Illuminate\View\View|string */ public function render() { return view('adminlte::components.form.button'); } }
[+]
..
[-] Button.php
[edit]
[-] DateRange.php
[edit]
[-] Input.php
[edit]
[-] InputColor.php
[edit]
[-] InputDate.php
[edit]
[-] InputFile.php
[edit]
[-] InputGroupComponent.php
[edit]
[-] InputSlider.php
[edit]
[-] InputSwitch.php
[edit]
[-] Options.php
[edit]
[-] Select.php
[edit]
[-] Select2.php
[edit]
[-] SelectBs.php
[edit]
[-] TextEditor.php
[edit]
[-] Textarea.php
[edit]
[+]
Traits
[-] .htaccess.disabled
[edit]