From 7352293880c4f9355b5dbbefe23e5ed16892e0a5 Mon Sep 17 00:00:00 2001 From: Deon George Date: Sat, 21 Jun 2025 23:37:00 +1000 Subject: [PATCH] Fix rendering updated attributes on entries that trigger a template --- resources/views/fragment/template/dn.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/fragment/template/dn.blade.php b/resources/views/fragment/template/dn.blade.php index fc0961a3..f0c4c5f6 100644 --- a/resources/views/fragment/template/dn.blade.php +++ b/resources/views/fragment/template/dn.blade.php @@ -6,10 +6,10 @@
- @php($up=(session()->pull('updated') ?: collect())) + @php($up=(session()->get('updated') ?: collect())) @foreach($o->getVisibleAttributes()->filter(fn($item)=>$template->attributes->map('strtolower')->contains($item->name_lc)) as $ao) - + @endforeach