├── .gitignore ├── README.md ├── composer.json ├── dist ├── js │ ├── field.js │ └── field.js.LICENSE.txt └── mix-manifest.json ├── nova.mix.js ├── package.json ├── postcss.config.js ├── resources └── js │ ├── components │ ├── DetailField.vue │ ├── FormField.vue │ └── IndexField.vue │ └── field.js ├── src ├── FieldServiceProvider.php ├── NovaSwitcher.php └── SwitchController.php └── webpack.mix.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trin4ik/nova-switcher/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trin4ik/nova-switcher/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trin4ik/nova-switcher/HEAD/composer.json -------------------------------------------------------------------------------- /dist/js/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trin4ik/nova-switcher/HEAD/dist/js/field.js -------------------------------------------------------------------------------- /dist/js/field.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trin4ik/nova-switcher/HEAD/dist/js/field.js.LICENSE.txt -------------------------------------------------------------------------------- /dist/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trin4ik/nova-switcher/HEAD/dist/mix-manifest.json -------------------------------------------------------------------------------- /nova.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trin4ik/nova-switcher/HEAD/nova.mix.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trin4ik/nova-switcher/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = {} 2 | -------------------------------------------------------------------------------- /resources/js/components/DetailField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trin4ik/nova-switcher/HEAD/resources/js/components/DetailField.vue -------------------------------------------------------------------------------- /resources/js/components/FormField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trin4ik/nova-switcher/HEAD/resources/js/components/FormField.vue -------------------------------------------------------------------------------- /resources/js/components/IndexField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trin4ik/nova-switcher/HEAD/resources/js/components/IndexField.vue -------------------------------------------------------------------------------- /resources/js/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trin4ik/nova-switcher/HEAD/resources/js/field.js -------------------------------------------------------------------------------- /src/FieldServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trin4ik/nova-switcher/HEAD/src/FieldServiceProvider.php -------------------------------------------------------------------------------- /src/NovaSwitcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trin4ik/nova-switcher/HEAD/src/NovaSwitcher.php -------------------------------------------------------------------------------- /src/SwitchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trin4ik/nova-switcher/HEAD/src/SwitchController.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trin4ik/nova-switcher/HEAD/webpack.mix.js --------------------------------------------------------------------------------