├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── RedirectController.php ├── ServiceProvider.php ├── ViewController.php └── macros.php └── tests ├── RedirectControllerTestCase.php ├── TestCase.php ├── ViewControllerTest.php └── stubs └── views └── contact.blade.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | composer.lock 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brayniverse/laravel-route-macros/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brayniverse/laravel-route-macros/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brayniverse/laravel-route-macros/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brayniverse/laravel-route-macros/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brayniverse/laravel-route-macros/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/RedirectController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brayniverse/laravel-route-macros/HEAD/src/RedirectController.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brayniverse/laravel-route-macros/HEAD/src/ServiceProvider.php -------------------------------------------------------------------------------- /src/ViewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brayniverse/laravel-route-macros/HEAD/src/ViewController.php -------------------------------------------------------------------------------- /src/macros.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brayniverse/laravel-route-macros/HEAD/src/macros.php -------------------------------------------------------------------------------- /tests/RedirectControllerTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brayniverse/laravel-route-macros/HEAD/tests/RedirectControllerTestCase.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brayniverse/laravel-route-macros/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/ViewControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brayniverse/laravel-route-macros/HEAD/tests/ViewControllerTest.php -------------------------------------------------------------------------------- /tests/stubs/views/contact.blade.php: -------------------------------------------------------------------------------- 1 | Contact us 2 | --------------------------------------------------------------------------------