From 2a6b65e4e3f5107a83d5913f52620cfcb713a30c Mon Sep 17 00:00:00 2001 From: Pedro Martins Date: Tue, 19 Aug 2025 18:43:56 +0100 Subject: [PATCH] update json column docs docs for https://github.com/Laravel-Backpack/CRUD/pull/5845 --- 7.x-dev/crud-columns.md | 1 + 1 file changed, 1 insertion(+) diff --git a/7.x-dev/crud-columns.md b/7.x-dev/crud-columns.md index 93986ef2..a06774b3 100644 --- a/7.x-dev/crud-columns.md +++ b/7.x-dev/crud-columns.md @@ -446,6 +446,7 @@ Display database stored JSON in a prettier way to your users. 'label' => 'JSON', 'type' => 'json', // 'escaped' => false, // echo using {!! !!} instead of {{ }}, in order to render HTML + 'toggle' => true //show a toggle button on the column that show/hide the json contents ], ```