├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── dist ├── css │ └── tool.css └── js │ └── tool.js ├── mix-manifest.json ├── package.json ├── resources ├── js │ ├── components │ │ └── Tool.vue │ └── tool.js ├── sass │ └── tool.scss └── views │ └── navigation.blade.php ├── routes └── api.php ├── screenshots ├── fifth.png ├── first.png ├── fourth.png ├── second.png ├── six.png └── third.png ├── src ├── Http │ ├── Controllers │ │ └── cPanelController.php │ └── Middleware │ │ └── Authorize.php ├── NovaMysql.php └── ToolServiceProvider.php └── webpack.mix.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/composer.json -------------------------------------------------------------------------------- /dist/css/tool.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/dist/css/tool.css -------------------------------------------------------------------------------- /dist/js/tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/dist/js/tool.js -------------------------------------------------------------------------------- /mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/mix-manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/package.json -------------------------------------------------------------------------------- /resources/js/components/Tool.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/resources/js/components/Tool.vue -------------------------------------------------------------------------------- /resources/js/tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/resources/js/tool.js -------------------------------------------------------------------------------- /resources/sass/tool.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/resources/sass/tool.scss -------------------------------------------------------------------------------- /resources/views/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/resources/views/navigation.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/routes/api.php -------------------------------------------------------------------------------- /screenshots/fifth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/screenshots/fifth.png -------------------------------------------------------------------------------- /screenshots/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/screenshots/first.png -------------------------------------------------------------------------------- /screenshots/fourth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/screenshots/fourth.png -------------------------------------------------------------------------------- /screenshots/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/screenshots/second.png -------------------------------------------------------------------------------- /screenshots/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/screenshots/six.png -------------------------------------------------------------------------------- /screenshots/third.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/screenshots/third.png -------------------------------------------------------------------------------- /src/Http/Controllers/cPanelController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/src/Http/Controllers/cPanelController.php -------------------------------------------------------------------------------- /src/Http/Middleware/Authorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/src/Http/Middleware/Authorize.php -------------------------------------------------------------------------------- /src/NovaMysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/src/NovaMysql.php -------------------------------------------------------------------------------- /src/ToolServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/src/ToolServiceProvider.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naifalshaye/nova-mysql/HEAD/webpack.mix.js --------------------------------------------------------------------------------