From c1130bc061a7fcc0d0f3dcdd2fae4e4a2d9f7b27 Mon Sep 17 00:00:00 2001 From: philipp lang Date: Fri, 18 Oct 2024 21:00:13 +0200 Subject: [PATCH] Add select field --- app/View/Form/Select.php | 59 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 app/View/Form/Select.php diff --git a/app/View/Form/Select.php b/app/View/Form/Select.php new file mode 100644 index 00000000..f544efa4 --- /dev/null +++ b/app/View/Form/Select.php @@ -0,0 +1,59 @@ +id = str()->uuid()->toString(); + } + + public function render() + { + return <<<'HTML' + + HTML; + } +}