> For the complete documentation index, see [llms.txt](https://tina-hammar.gitbook.io/tall-forms/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tina-hammar.gitbook.io/tall-forms/field/field-methods.md).

# Field methods

Field methods are described on each field type and on pages in the Field section. Some methods apply to all field types. Also see [Validation](/tall-forms/concept/validation.md), [Styling](/tall-forms/concept/styling.md) ...

## Shared field methods, available to all field types

### ->default($default)

* Sets the default value to use for the field if if no value exists on the model.
* Used by the reset button if no value exists on the model.

```
 Input::make('City')->required()->default('Stockholm'),
```

### ->wire(string $on = 'wire:model')

Override the default `wire:model` attribute set in [config](/tall-forms/concept/configuration.md)

```
Input::make('Search')->wire('wire:model.debounce.750ms')
Input::make('Search')->wire('defer')
Input::make('Search')->wire('lazy')
```

### ->deferEntangle(bool $state = true)

Same as $field->wire('defer'), overrides [config](/tall-forms/concept/configuration.md). Defer updating field value until next request.

```
Input::make('Search')->deferEntangle()
Input::make('Search')->deferEntangle(false)
```

### ->rules(string|array $rules)

See [Validation](/tall-forms/concept/validation.md) page

### ->required()

same as `$field->rules('required')`

### ->disabled()


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://tina-hammar.gitbook.io/tall-forms/field/field-methods.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
