├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── pint.json ├── rector.php ├── resources └── views │ ├── components │ └── button.blade.php │ └── switcher.blade.php └── src ├── Enums └── Alignment.php ├── LightSwitchPlugin.php └── LightSwitchServiceProvider.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awcodes/light-switch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awcodes/light-switch/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awcodes/light-switch/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awcodes/light-switch/HEAD/composer.json -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awcodes/light-switch/HEAD/pint.json -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awcodes/light-switch/HEAD/rector.php -------------------------------------------------------------------------------- /resources/views/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awcodes/light-switch/HEAD/resources/views/components/button.blade.php -------------------------------------------------------------------------------- /resources/views/switcher.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awcodes/light-switch/HEAD/resources/views/switcher.blade.php -------------------------------------------------------------------------------- /src/Enums/Alignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awcodes/light-switch/HEAD/src/Enums/Alignment.php -------------------------------------------------------------------------------- /src/LightSwitchPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awcodes/light-switch/HEAD/src/LightSwitchPlugin.php -------------------------------------------------------------------------------- /src/LightSwitchServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awcodes/light-switch/HEAD/src/LightSwitchServiceProvider.php --------------------------------------------------------------------------------