Sindbad~EG File Manager
<?php
namespace JeroenNoten\LaravelAdminLte\Components\Form;
use Illuminate\View\Component;
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 = $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');
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists