class Form implements Renderable

Class Form.

Traits

Constants

REMOVE_FLAG_NAME

Remove flag in has many form.

Properties

protected array $hooks

Supported hooks: submitted, editing, saving, saved, deleting, deleted.

from  HasHooks
array $rows

Field rows in form.

static array $availableFields

Available fields.

static array $fieldAlias

Form field alias.

protected Model $model

Eloquent model of the form.

protected Validator $validator
protected Builder $builder
protected array $updates

Data for save to current model from input.

protected array $relations

Data for save to model's relations from input.

protected array $inputs

Input data.

protected Layout $layout
protected array $ignored

Ignored saving fields.

protected Tab $tab
protected bool $isSoftDeletes
static protected array $collectedAssets

Collected field assets.

static protected $initCallbacks

Initialization closure array.

Methods

$this
registerHook(string $name, Closure $callback)

Register a hook.

from  HasHooks
Response
callHooks(string $name, array $parameters = [])

Call hooks by giving name.

from  HasHooks
$this
editing(Closure $callback)

Set after getting editing model callback.

from  HasHooks
$this
submitted(Closure $callback)

Set submitted callback.

from  HasHooks
$this
saving(Closure $callback)

Set saving callback.

from  HasHooks
$this
saved(Closure $callback)

Set saved callback.

from  HasHooks
$this
deleting(Closure $callback)

No description

from  HasHooks
$this
deleted(Closure $callback)

No description

from  HasHooks
mixed
callEditing()

Call editing callbacks.

from  HasHooks
mixed
callSubmitted()

Call submitted callback.

from  HasHooks
mixed
callSaving()

Call saving callback.

from  HasHooks
mixed|null
callSaved()

Callback after saving a Model.

from  HasHooks
mixed
callDeleting(mixed $id)

Call hooks when deleting.

from  HasHooks
mixed
callDeleted()

No description

from  HasHooks
__construct($model, Closure $callback = null)

Create a new form instance.

$this
pushField(Field $field)

No description

Model
model()

No description

builder()

No description

$this
edit($id)

Generate a edit form.

$this
tab(string $title, Closure $content, $active = false)

Use tab to split form.

Tab
getTab()

Get Tab instance.

mixed
destroy($id)

Destroy data entity and remove files.

RedirectResponse|Redirector|JsonResponse
store()

Store a new record.

bool|ResponseFactory|JsonResponse|RedirectResponse|Response|mixed|null|Response
update(int $id, null $data = null)

Handle update.

$this
ignore(string|array $fields)

Ignore fields to save.

fieldset(string $title, Closure $setCallback)

Add a fieldset to form.

MessageBag|bool
validationMessages(array $input)

Get validation messages.

array
getRelations()

Get all relations of model from callable.

$this
setAction(string $action)

Set action for form.

$this
setWidth(int $fieldWidth = 8, int $labelWidth = 2)

Set field and label width in current form.

$this
setView(string $view)

Set view for form.

$this
setTitle(string $title = '')

Set title for form.

$this
row(Closure $callback)

Add a row in form.

tools(Closure $callback)

Tools setting for form.

header(Closure $callback = null)

No description

bool
isCreating()

Indicates if current form page is creating.

bool
isEditing()

Indicates if current form page is editing.

$this
disableSubmit(bool $disable = true) deprecated

Disable form submit.

$this
disableReset(bool $disable = true) deprecated

Disable form reset.

$this
disableViewCheck(bool $disable = true)

Disable View Checkbox on footer.

$this
disableEditingCheck(bool $disable = true)

Disable Editing Checkbox on footer.

$this
disableCreatingCheck(bool $disable = true)

Disable Creating Checkbox on footer.

footer(Closure $callback = null)

Footer setting for form.

string
resource(int $slice = -2)

Get current resource route url.

string
render()

Render the form contents.

array|mixed
input(string $key, null $value = null)

Get or set input data.

$this
column(int $width, Closure $closure)

Add a new layout column.

array|mixed
__get(string $name)

Getter.

array
__set(string $name, mixed $value)

Setter.

__call(string $method, array $arguments)

Generate a Field object and add to form builder if Field exists.

getLayout()

No description

static 
init(Closure $callback = null)

Initialize with user pre-defined default disables, etc.

static void
extend(string $abstract, string $class)

Register custom field.

static void
alias(string $field, string $alias)

Set form field alias.

static 
forget(array|string $abstract)

Remove registered field.

static bool|mixed
findFieldClass(string $method)

Find field class.

static array
collectFieldAssets()

Collect assets required by registered field.

callInitCallbacks()

Call the initialization closure array in sequence.

deleteFiles(Model $model, bool $forceDelete = false)

Remove files in record.

$this|JsonResponse
responseValidationError(MessageBag $message)

No description

bool|JsonResponse
ajaxResponse(string $message)

Get ajax response.

mixed
prepare(array $data = [])

Prepare input data for insert or update.

array
removeIgnoredFields(array $input)

Remove ignored fields from input.

array
getRelationInputs(array $inputs = [])

Get inputs for relations.

RedirectResponse
redirectAfterStore()

Get RedirectResponse after store.

RedirectResponse
redirectAfterUpdate(mixed $key)

Get RedirectResponse after update.

RedirectResponse|Redirector
redirectAfterSaving(string $resourcesPath, string $key)

Get RedirectResponse after data saving.

bool
isEditable(array $input = [])

Check if request is from editable.

array|ResponseFactory|Response|Response
handleColumnUpdates(int $id, array $data)

Handle updates for single column.

array
handleEditable(array $input = [])

Handle editable update.

array
handleFileDelete(array $input = [])

No description

array
handleFileSort(array $input = [])

No description

bool
handleOrderable(int $id, array $input = [])

Handle orderable update.

void
updateRelation(array $relationsData)

Update relation data.

array
prepareUpdate(array $updates, bool $oneToOneRelation = false)

Prepare input data for update.

bool
isInvalidColumn(string|array $columns, bool $containsDot = false)

No description

array
prepareInsert($inserts)

Prepare input data for insert.

bool
isHasOneRelation(array $inserts)

Is input data is has-one relation.

array|mixed
getDataByColumn(array $data, string|array $columns)

No description

mixed
getFieldByColumn($column)

Find field object by column.

void
setFieldOriginalValue()

Set original data for each field.

void
setFieldValue($id)

Set all fields value in form.

MessageBag
mergeValidationMessages(Validator[] $validators)

Merge validation messages from input validators.

initLayout()

Initialize filter layout.

static void
doNotSnakeAttributes(Model $model)

Don't snake case attributes.

code(mixed $column, mixed $label)

No description

text(mixed $column, mixed $label)

No description

checkbox(mixed $column, mixed $label)

No description

radio(mixed $column, mixed $label)

No description

select(mixed $column, mixed $label)

No description

multipleSelect(mixed $column, mixed $label)

No description

textarea(mixed $column, mixed $label)

No description

hidden(mixed $column, mixed $label)

No description

Id
id(mixed $column, mixed $label)

No description

Ip
ip(mixed $column, mixed $label)

No description

Url
url(mixed $column, mixed $label)

No description

color(mixed $column, mixed $label)

No description

email(mixed $column, mixed $label)

No description

mobile(mixed $column, mixed $label)

No description

slider(mixed $column, mixed $label)

No description

file(mixed $column, mixed $label)

No description

image(mixed $column, mixed $label)

No description

date(mixed $column, mixed $label)

No description

datetime(mixed $column, mixed $label)

No description

time(mixed $column, mixed $label)

No description

year(mixed $column, mixed $label)

No description

month(mixed $column, mixed $label)

No description

dateRange(mixed $start, mixed $end, mixed $label)

No description

DateTimeRange
datetimeRange(mixed $start, mixed $end, mixed $label)

No description

timeRange(mixed $start, mixed $end, mixed $label)

No description

number(mixed $column, mixed $label)

No description

currency(mixed $column, mixed $label)

No description

hasMany(mixed $relationName, mixed $label, mixed $callback)

No description

switch() $$column, $label)

No description

display(mixed $column, mixed $label)

No description

rate(mixed $column, mixed $label)

No description

divider(mixed $title)

No description

password(mixed $column, mixed $label)

No description

decimal(mixed $column, mixed $label)

No description

html(mixed $html, mixed $label)

No description

tags(mixed $column, mixed $label)

No description

icon(mixed $column, mixed $label)

No description

embeds(mixed $column, mixed $label, mixed $callback)

No description

multipleImage(mixed $column, mixed $label)

No description

multipleFile(mixed $column, mixed $label)

No description

captcha(mixed $column, mixed $label)

No description

listbox(mixed $column, mixed $label)

No description

table(mixed $column, mixed $label, mixed $builder)

No description

timezone(mixed $column, mixed $label)

No description

keyValue(mixed $column, mixed $label)

No description

keyWord(mixed $column, mixed $label)

No description

list(mixed $column, mixed $label)

No description

Details

in HasHooks at line 26
protected $this registerHook(string $name, Closure $callback)

Register a hook.

Parameters

string $name
Closure $callback

Return Value

$this

in HasHooks at line 41
protected Response callHooks(string $name, array $parameters = [])

Call hooks by giving name.

Parameters

string $name
array $parameters

Return Value

Response

in HasHooks at line 65
$this editing(Closure $callback)

Set after getting editing model callback.

Parameters

Closure $callback

Return Value

$this

in HasHooks at line 77
$this submitted(Closure $callback)

Set submitted callback.

Parameters

Closure $callback

Return Value

$this

in HasHooks at line 89
$this saving(Closure $callback)

Set saving callback.

Parameters

Closure $callback

Return Value

$this

in HasHooks at line 101
$this saved(Closure $callback)

Set saved callback.

Parameters

Closure $callback

Return Value

$this

in HasHooks at line 111
$this deleting(Closure $callback)

No description

Parameters

Closure $callback

Return Value

$this

in HasHooks at line 121
$this deleted(Closure $callback)

No description

Parameters

Closure $callback

Return Value

$this

in HasHooks at line 131
protected mixed callEditing()

Call editing callbacks.

Return Value

mixed

in HasHooks at line 141
protected mixed callSubmitted()

Call submitted callback.

Return Value

mixed

in HasHooks at line 151
protected mixed callSaving()

Call saving callback.

Return Value

mixed

in HasHooks at line 161
protected mixed|null callSaved()

Callback after saving a Model.

Return Value

mixed|null

in HasHooks at line 173
protected mixed callDeleting(mixed $id)

Call hooks when deleting.

Parameters

mixed $id

Return Value

mixed

in HasHooks at line 181
protected mixed callDeleted()

No description

Return Value

mixed

at line 227
__construct($model, Closure $callback = null)

Create a new form instance.

Parameters

$model
Closure $callback

at line 249
$this pushField(Field $field)

No description

Parameters

Field $field

Return Value

$this

at line 265
Model model()

No description

Return Value

Model

at line 273
Builder builder()

No description

Return Value

Builder

at line 285
$this edit($id)

Generate a edit form.

Parameters

$id

Return Value

$this

at line 303
$this tab(string $title, Closure $content, $active = false)

Use tab to split form.

Parameters

string $title
Closure $content
$active

Return Value

$this

at line 315
Tab getTab()

Get Tab instance.

Return Value

Tab

at line 331
mixed destroy($id)

Destroy data entity and remove files.

Parameters

$id

Return Value

mixed

at line 381
RedirectResponse|Redirector|JsonResponse store()

Store a new record.

Return Value

RedirectResponse|Redirector|JsonResponse

at line 425
bool|ResponseFactory|JsonResponse|RedirectResponse|Response|mixed|null|Response update(int $id, null $data = null)

Handle update.

Parameters

int $id
null $data

Return Value

bool|ResponseFactory|JsonResponse|RedirectResponse|Response|mixed|null|Response

at line 490
$this ignore(string|array $fields)

Ignore fields to save.

Parameters

string|array $fields

Return Value

$this

at line 505
Fieldset fieldset(string $title, Closure $setCallback)

Add a fieldset to form.

Parameters

string $title
Closure $setCallback

Return Value

Fieldset

at line 525
MessageBag|bool validationMessages(array $input)

Get validation messages.

Parameters

array $input

Return Value

MessageBag|bool

at line 550
array getRelations()

Get all relations of model from callable.

Return Value

array

at line 586
$this setAction(string $action)

Set action for form.

Parameters

string $action

Return Value

$this

at line 601
$this setWidth(int $fieldWidth = 8, int $labelWidth = 2)

Set field and label width in current form.

Parameters

int $fieldWidth
int $labelWidth

Return Value

$this

at line 620
$this setView(string $view)

Set view for form.

Parameters

string $view

Return Value

$this

at line 634
$this setTitle(string $title = '')

Set title for form.

Parameters

string $title

Return Value

$this

at line 648
$this row(Closure $callback)

Add a row in form.

Parameters

Closure $callback

Return Value

$this

at line 660
tools(Closure $callback)

Tools setting for form.

Parameters

Closure $callback

at line 670
Tools header(Closure $callback = null)

No description

Parameters

Closure $callback

Return Value

Tools

at line 684
bool isCreating()

Indicates if current form page is creating.

Return Value

bool

at line 694
bool isEditing()

Indicates if current form page is editing.

Return Value

bool

at line 708
$this disableSubmit(bool $disable = true) deprecated

deprecated

Disable form submit.

Parameters

bool $disable

Return Value

$this

at line 724
$this disableReset(bool $disable = true) deprecated

deprecated

Disable form reset.

Parameters

bool $disable

Return Value

$this

at line 738
$this disableViewCheck(bool $disable = true)

Disable View Checkbox on footer.

Parameters

bool $disable

Return Value

$this

at line 752
$this disableEditingCheck(bool $disable = true)

Disable Editing Checkbox on footer.

Parameters

bool $disable

Return Value

$this

at line 766
$this disableCreatingCheck(bool $disable = true)

Disable Creating Checkbox on footer.

Parameters

bool $disable

Return Value

$this

Footer setting for form.

Parameters

Closure $callback

at line 794
string resource(int $slice = -2)

Get current resource route url.

Parameters

int $slice

Return Value

string

at line 810
string render()

Render the form contents.

Return Value

string

at line 827
array|mixed input(string $key, null $value = null)

Get or set input data.

Parameters

string $key
null $value

Return Value

array|mixed

at line 844
$this column(int $width, Closure $closure)

Add a new layout column.

Parameters

int $width
Closure $closure

Return Value

$this

at line 860
array|mixed __get(string $name)

Getter.

Parameters

string $name

Return Value

array|mixed

at line 873
array __set(string $name, mixed $value)

Setter.

Parameters

string $name
mixed $value

Return Value

array

at line 886
Field __call(string $method, array $arguments)

Generate a Field object and add to form builder if Field exists.

Parameters

string $method
array $arguments

Return Value

Field

at line 904
Layout getLayout()

No description

Return Value

Layout

at line 914
static init(Closure $callback = null)

Initialize with user pre-defined default disables, etc.

Parameters

Closure $callback

at line 927
static void extend(string $abstract, string $class)

Register custom field.

Parameters

string $abstract
string $class

Return Value

void

at line 940
static void alias(string $field, string $alias)

Set form field alias.

Parameters

string $field
string $alias

Return Value

void

at line 950
static forget(array|string $abstract)

Remove registered field.

Parameters

array|string $abstract

at line 962
static bool|mixed findFieldClass(string $method)

Find field class.

Parameters

string $method

Return Value

bool|mixed

at line 983
static array collectFieldAssets()

Collect assets required by registered field.

Return Value

array

at line 1012
protected callInitCallbacks()

Call the initialization closure array in sequence.

at line 1029
protected deleteFiles(Model $model, bool $forceDelete = false)

Remove files in record.

Parameters

Model $model
bool $forceDelete

at line 1052
protected $this|JsonResponse responseValidationError(MessageBag $message)

No description

Parameters

MessageBag $message

Return Value

$this|JsonResponse

at line 1072
protected bool|JsonResponse ajaxResponse(string $message)

Get ajax response.

Parameters

string $message

Return Value

bool|JsonResponse

at line 1094
protected mixed prepare(array $data = [])

Prepare input data for insert or update.

Parameters

array $data

Return Value

mixed

at line 1118
protected array removeIgnoredFields(array $input)

Remove ignored fields from input.

Parameters

array $input

Return Value

array

at line 1132
protected array getRelationInputs(array $inputs = [])

Get inputs for relations.

Parameters

array $inputs

Return Value

array

at line 1156
protected RedirectResponse redirectAfterStore()

Get RedirectResponse after store.

Return Value

RedirectResponse

at line 1172
protected RedirectResponse redirectAfterUpdate(mixed $key)

Get RedirectResponse after update.

Parameters

mixed $key

Return Value

RedirectResponse

at line 1187
protected RedirectResponse|Redirector redirectAfterSaving(string $resourcesPath, string $key)

Get RedirectResponse after data saving.

Parameters

string $resourcesPath
string $key

Return Value

RedirectResponse|Redirector

at line 1217
protected bool isEditable(array $input = [])

Check if request is from editable.

Parameters

array $input

Return Value

bool

at line 1230
protected array|ResponseFactory|Response|Response handleColumnUpdates(int $id, array $data)

Handle updates for single column.

Parameters

int $id
array $data

Return Value

array|ResponseFactory|Response|Response

at line 1255
protected array handleEditable(array $input = [])

Handle editable update.

Parameters

array $input

Return Value

array

at line 1273
protected array handleFileDelete(array $input = [])

No description

Parameters

array $input

Return Value

array

at line 1290
protected array handleFileSort(array $input = [])

No description

Parameters

array $input

Return Value

array

at line 1319
protected bool handleOrderable(int $id, array $input = [])

Handle orderable update.

Parameters

int $id
array $input

Return Value

bool

at line 1341
protected void updateRelation(array $relationsData)

Update relation data.

Parameters

array $relationsData

Return Value

void

at line 1457
protected array prepareUpdate(array $updates, bool $oneToOneRelation = false)

Prepare input data for update.

Parameters

array $updates
bool $oneToOneRelation

If column is one-to-one relation.

Return Value

array

at line 1497
protected bool isInvalidColumn(string|array $columns, bool $containsDot = false)

No description

Parameters

string|array $columns
bool $containsDot

Return Value

bool

at line 1516
protected array prepareInsert($inserts)

Prepare input data for insert.

Parameters

$inserts

Return Value

array

at line 1547
protected bool isHasOneRelation(array $inserts)

Is input data is has-one relation.

Parameters

array $inserts

Return Value

bool

at line 1568
protected array|mixed getDataByColumn(array $data, string|array $columns)

No description

Parameters

array $data
string|array $columns

Return Value

array|mixed

at line 1594
protected mixed getFieldByColumn($column)

Find field object by column.

Parameters

$column

Return Value

mixed

at line 1612
protected void setFieldOriginalValue()

Set original data for each field.

Return Value

void

at line 1630
protected void setFieldValue($id)

Set all fields value in form.

Parameters

$id

Return Value

void

at line 1662
protected MessageBag mergeValidationMessages(Validator[] $validators)

Merge validation messages from input validators.

Parameters

Validator[] $validators

Return Value

MessageBag

at line 1676
protected initLayout()

Initialize filter layout.

at line 1688
static protected void doNotSnakeAttributes(Model $model)

Don't snake case attributes.

Parameters

Model $model

Return Value

void

at line 80
Code code(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Code

at line 80
Text text(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Text

at line 80
Checkbox checkbox(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Checkbox

at line 80
Radio radio(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Radio

at line 80
Select select(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Select

at line 80
MultipleSelect multipleSelect(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

MultipleSelect

at line 80
Textarea textarea(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Textarea

at line 80
Hidden hidden(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Hidden

at line 80
Id id(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Id

at line 80
Ip ip(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Ip

at line 80
Url url(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Url

at line 80
Color color(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Color

at line 80
Email email(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Email

at line 80
Mobile mobile(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Mobile

at line 80
Slider slider(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Slider

at line 80
File file(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

File

at line 80
Image image(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Image

at line 80
Date date(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Date

at line 80
Datetime datetime(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Datetime

at line 80
Time time(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Time

at line 80
Year year(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Year

at line 80
Month month(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Month

at line 80
DateRange dateRange(mixed $start, mixed $end, mixed $label)

No description

Parameters

mixed $start
mixed $end
mixed $label

Return Value

DateRange

at line 80
DateTimeRange datetimeRange(mixed $start, mixed $end, mixed $label)

No description

Parameters

mixed $start
mixed $end
mixed $label

Return Value

DateTimeRange

at line 80
TimeRange timeRange(mixed $start, mixed $end, mixed $label)

No description

Parameters

mixed $start
mixed $end
mixed $label

Return Value

TimeRange

at line 80
Number number(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Number

at line 80
Currency currency(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Currency

at line 80
HasMany hasMany(mixed $relationName, mixed $label, mixed $callback)

No description

Parameters

mixed $relationName
mixed $label
mixed $callback

Return Value

HasMany

at line 80
SwitchField switch() $$column, $label)

No description

Parameters

) $$column
$label

Return Value

SwitchField

at line 80
Display display(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Display

at line 80
Rate rate(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Rate

at line 80
Divider divider(mixed $title)

No description

Parameters

mixed $title

Return Value

Divider

at line 80
Password password(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Password

at line 80
Decimal decimal(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Decimal

at line 80
Html html(mixed $html, mixed $label)

No description

Parameters

mixed $html
mixed $label

Return Value

Html

at line 80
Tags tags(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Tags

at line 80
Icon icon(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Icon

at line 80
Embeds embeds(mixed $column, mixed $label, mixed $callback)

No description

Parameters

mixed $column
mixed $label
mixed $callback

Return Value

Embeds

at line 80
MultiImage multipleImage(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

MultiImage

at line 80
MultipleFile multipleFile(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

MultipleFile

at line 80
Captcha captcha(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Captcha

at line 80
Listbox listbox(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Listbox

at line 80
Table table(mixed $column, mixed $label, mixed $builder)

No description

Parameters

mixed $column
mixed $label
mixed $builder

Return Value

Table

at line 80
Timezone timezone(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Timezone

at line 80
KeyValue keyValue(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

KeyValue

at line 80
Keyword keyWord(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

Keyword

at line 80
ListField list(mixed $column, mixed $label)

No description

Parameters

mixed $column
mixed $label

Return Value

ListField