Sindbad~EG File Manager

Current Path : /var/www/html/eva.sumar.com.py/vendor/jeroennoten/laravel-adminlte/src/Components/Form/
Upload File :
Current File : /var/www/html/eva.sumar.com.py/vendor/jeroennoten/laravel-adminlte/src/Components/Form/Button.php

<?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