├── .github ├── FUNDING.yml └── workflows │ └── tests.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── DebugEngine.php ├── DebugEngineResolver.php └── ViewDebugServiceProvider.php └── tests ├── BasicTest.php ├── DebugEngineTest.php ├── TestCase.php └── fixtures └── views ├── subview.blade.php └── view.blade.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [jasonvarga] 2 | -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfear/laravel-view-debug/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .phpunit.result.cache 3 | composer.lock 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfear/laravel-view-debug/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfear/laravel-view-debug/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfear/laravel-view-debug/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfear/laravel-view-debug/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/DebugEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfear/laravel-view-debug/HEAD/src/DebugEngine.php -------------------------------------------------------------------------------- /src/DebugEngineResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfear/laravel-view-debug/HEAD/src/DebugEngineResolver.php -------------------------------------------------------------------------------- /src/ViewDebugServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfear/laravel-view-debug/HEAD/src/ViewDebugServiceProvider.php -------------------------------------------------------------------------------- /tests/BasicTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfear/laravel-view-debug/HEAD/tests/BasicTest.php -------------------------------------------------------------------------------- /tests/DebugEngineTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfear/laravel-view-debug/HEAD/tests/DebugEngineTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfear/laravel-view-debug/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/fixtures/views/subview.blade.php: -------------------------------------------------------------------------------- 1 | Sub view contents. 2 | -------------------------------------------------------------------------------- /tests/fixtures/views/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelfear/laravel-view-debug/HEAD/tests/fixtures/views/view.blade.php --------------------------------------------------------------------------------