From 7aae3ba299e6cc14e6c89be1a15610d2c3169846 Mon Sep 17 00:00:00 2001 From: Wietse van Ginkel Date: Wed, 3 Dec 2025 15:00:44 +0100 Subject: [PATCH 1/8] 2fa new style new checkbox list --- resources/lang/en/buildora.php | 3 + .../views/components/datatable.blade.php | 80 +++- .../views/components/relation/panel.blade.php | 375 +++++++++++++++++- routes/buildora.php | 25 ++ src/Layouts/Panel.php | 51 ++- 5 files changed, 512 insertions(+), 22 deletions(-) diff --git a/resources/lang/en/buildora.php b/resources/lang/en/buildora.php index fd9886b..1a3a277 100644 --- a/resources/lang/en/buildora.php +++ b/resources/lang/en/buildora.php @@ -166,4 +166,7 @@ 'Create new item' => 'Create new item', 'Fill in the details below' => 'Fill in the details below', 'There are issues with your input' => 'There are issues with your input', + + // Inline relation editing + 'Are you sure you want to delete this record?' => 'Are you sure you want to delete this record?', ]; diff --git a/resources/views/components/datatable.blade.php b/resources/views/components/datatable.blade.php index 66bb197..8b5f535 100644 --- a/resources/views/components/datatable.blade.php +++ b/resources/views/components/datatable.blade.php @@ -1,9 +1,14 @@ @props([ 'endpoint' => request()->url() . '/datatable/json', - 'componentKey' => Str::random(8) + 'componentKey' => Str::random(8), + 'inlineEditing' => false, + 'inlineDelete' => false ]) -
+
{{-- Toast Notification --}}
-