├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── README.md ├── composer.json ├── composer.lock ├── config └── laravelunused.php ├── demo.png ├── package.json ├── public ├── app.css ├── app.js ├── app.js.LICENSE.txt ├── fonts │ └── vendor │ │ └── element-ui │ │ └── lib │ │ └── theme-chalk │ │ ├── element-icons.ttf │ │ └── element-icons.woff └── mix-manifest.json ├── resources ├── js │ ├── app.js │ ├── components │ │ ├── UnusedViews.vue │ │ └── UsedViews.vue │ ├── mixins │ │ └── delete-modal.js │ ├── pages │ │ └── Dashboard.vue │ └── routes.js ├── sass │ ├── app.scss │ └── element-ui.scss └── views │ └── dashboard.blade.php ├── src ├── Analyzer │ └── ViewAnalyzer.php ├── Commands │ └── CheckForUnusedViews.php ├── Controllers │ └── LaravelUnusedController.php ├── Middleware │ └── LaravelUnusedMiddleware.php ├── Parser │ ├── Action │ │ ├── ClosureParser.php │ │ ├── ControllerParser.php │ │ └── ParserActionInterface.php │ ├── ParserInterface.php │ └── ViewParser.php ├── ServiceProvider.php └── Transformers │ └── ViewTransformer.php ├── tailwind.config.js ├── tests ├── Analyzer │ └── ViewAnalyzerTest.php ├── Parser │ ├── ClosureParserTest.php │ ├── ControllerParserTest.php │ └── ViewParserTest.php └── TestCase.php ├── webpack.mix.js ├── yarn-error.log └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /node_modules 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/composer.lock -------------------------------------------------------------------------------- /config/laravelunused.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/config/laravelunused.php -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/demo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/package.json -------------------------------------------------------------------------------- /public/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/public/app.css -------------------------------------------------------------------------------- /public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/public/app.js -------------------------------------------------------------------------------- /public/app.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/public/app.js.LICENSE.txt -------------------------------------------------------------------------------- /public/fonts/vendor/element-ui/lib/theme-chalk/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/public/fonts/vendor/element-ui/lib/theme-chalk/element-icons.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/element-ui/lib/theme-chalk/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/public/fonts/vendor/element-ui/lib/theme-chalk/element-icons.woff -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/components/UnusedViews.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/resources/js/components/UnusedViews.vue -------------------------------------------------------------------------------- /resources/js/components/UsedViews.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/resources/js/components/UsedViews.vue -------------------------------------------------------------------------------- /resources/js/mixins/delete-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/resources/js/mixins/delete-modal.js -------------------------------------------------------------------------------- /resources/js/pages/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/resources/js/pages/Dashboard.vue -------------------------------------------------------------------------------- /resources/js/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/resources/js/routes.js -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/sass/element-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/resources/sass/element-ui.scss -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /src/Analyzer/ViewAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/src/Analyzer/ViewAnalyzer.php -------------------------------------------------------------------------------- /src/Commands/CheckForUnusedViews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/src/Commands/CheckForUnusedViews.php -------------------------------------------------------------------------------- /src/Controllers/LaravelUnusedController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/src/Controllers/LaravelUnusedController.php -------------------------------------------------------------------------------- /src/Middleware/LaravelUnusedMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/src/Middleware/LaravelUnusedMiddleware.php -------------------------------------------------------------------------------- /src/Parser/Action/ClosureParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/src/Parser/Action/ClosureParser.php -------------------------------------------------------------------------------- /src/Parser/Action/ControllerParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/src/Parser/Action/ControllerParser.php -------------------------------------------------------------------------------- /src/Parser/Action/ParserActionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/src/Parser/Action/ParserActionInterface.php -------------------------------------------------------------------------------- /src/Parser/ParserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/src/Parser/ParserInterface.php -------------------------------------------------------------------------------- /src/Parser/ViewParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/src/Parser/ViewParser.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/src/ServiceProvider.php -------------------------------------------------------------------------------- /src/Transformers/ViewTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/src/Transformers/ViewTransformer.php -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/Analyzer/ViewAnalyzerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/tests/Analyzer/ViewAnalyzerTest.php -------------------------------------------------------------------------------- /tests/Parser/ClosureParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/tests/Parser/ClosureParserTest.php -------------------------------------------------------------------------------- /tests/Parser/ControllerParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/tests/Parser/ControllerParserTest.php -------------------------------------------------------------------------------- /tests/Parser/ViewParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/tests/Parser/ViewParserTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/webpack.mix.js -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typehints/laravel-unused/HEAD/yarn.lock --------------------------------------------------------------------------------