From a183deff81279041eaa0be659e130229f5c89490 Mon Sep 17 00:00:00 2001 From: pxpm Date: Fri, 12 Jul 2024 19:55:25 +0100 Subject: [PATCH] add "select all" option to checklist field --- 6.x/crud-fields.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/6.x/crud-fields.md b/6.x/crud-fields.md index 203eb84..e14f874 100644 --- a/6.x/crud-fields.md +++ b/6.x/crud-fields.md @@ -316,7 +316,9 @@ CRUD::field([ // Checklist 'attribute' => 'name', 'model' => "Backpack\PermissionManager\app\Models\Role", 'pivot' => true, + 'show_select_all' => true, // default false // 'number_of_columns' => 3, + ]); ```