├── .styleci.yml ├── LICENSE.md ├── README-zh-TW.md ├── README.md ├── _ide_helpers.php ├── composer.json ├── config └── inertia-ssr-head.php └── src ├── HeadManager.php ├── InertiaSSRHeadServiceProvider.php ├── ResponseFactory.php └── ResponseMacros.php /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/inertia-laravel-ssr-head/HEAD/.styleci.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/inertia-laravel-ssr-head/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README-zh-TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/inertia-laravel-ssr-head/HEAD/README-zh-TW.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/inertia-laravel-ssr-head/HEAD/README.md -------------------------------------------------------------------------------- /_ide_helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/inertia-laravel-ssr-head/HEAD/_ide_helpers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/inertia-laravel-ssr-head/HEAD/composer.json -------------------------------------------------------------------------------- /config/inertia-ssr-head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/inertia-laravel-ssr-head/HEAD/config/inertia-ssr-head.php -------------------------------------------------------------------------------- /src/HeadManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/inertia-laravel-ssr-head/HEAD/src/HeadManager.php -------------------------------------------------------------------------------- /src/InertiaSSRHeadServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/inertia-laravel-ssr-head/HEAD/src/InertiaSSRHeadServiceProvider.php -------------------------------------------------------------------------------- /src/ResponseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/inertia-laravel-ssr-head/HEAD/src/ResponseFactory.php -------------------------------------------------------------------------------- /src/ResponseMacros.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ycs77/inertia-laravel-ssr-head/HEAD/src/ResponseMacros.php --------------------------------------------------------------------------------