diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index e3d1b60364c..c9e0b36916c 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -10,7 +10,7 @@ This serves two purposes: 2. At release time, you can move the Unreleased section changes into a new release version section. ### Added -- for new features. +- Added a `@head` stack to the `head.blade.php` component in https://github.com/hydephp/develop/pull/1567 ### Changed - for changes in existing functionality. diff --git a/packages/framework/resources/views/layouts/head.blade.php b/packages/framework/resources/views/layouts/head.blade.php index e7f9f65df65..20f002ebc62 100644 --- a/packages/framework/resources/views/layouts/head.blade.php +++ b/packages/framework/resources/views/layouts/head.blade.php @@ -18,6 +18,9 @@ @endif +{{-- Add any extra code to include before the closing tag --}} +@stack('head') + {{-- If the user has defined any custom head tags, render them here --}} {!! config('hyde.head') !!} {!! Includes::html('head') !!}