From c0c9a761a1d0725a13a2b80cf7a3b3de8caba278 Mon Sep 17 00:00:00 2001 From: Sonny Spaan Date: Sat, 17 Feb 2024 18:16:53 +0100 Subject: [PATCH] Update docs --- docs/general-usage/html-builder.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/general-usage/html-builder.md b/docs/general-usage/html-builder.md index c4cc78f..47e2159 100644 --- a/docs/general-usage/html-builder.md +++ b/docs/general-usage/html-builder.md @@ -108,5 +108,12 @@ To make things easier we've added the `modelForm()` and `closeModelForm()` metho - `function select($name = null, $options = [], $value = null): Select` - `function submit($text = null): Button` - `function text($name = null, $value = null): Input` +- `function search($name = null, $value = null): Input` +- `function date($name = '', $value = null, $format = true): Input` +- `function datetime($name = '', $value = null, $format = true): Input` +- `function time($name = '', $value = null, $format = true): Input` +- `function range($name = '', $value = '', $min = null, $max = null, $step = null): Input` +- `function number($name = null, $value = null, $min = null, $max = null, $step = null): Input` - `function textarea($name = null, $value = null): Textarea` +- `function file($name = null): File` - `function token(): Input`