From 883e9faff6b8ded5cdda1ca720bb6f2d1ecf193f Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 13 Feb 2024 14:37:32 +0000 Subject: [PATCH] Merge pull request #1567 from hydephp/add-new-head-stack-to-match-scripts-stack Add a `@head` stack to the `head.blade.php` component https://github.com/hydephp/develop/commit/7901a69e637a5d30905341c5c5720c2c694300c4 --- resources/views/layouts/head.blade.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/views/layouts/head.blade.php b/resources/views/layouts/head.blade.php index e7f9f65d..20f002eb 100644 --- a/resources/views/layouts/head.blade.php +++ b/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') !!}