Download the PHP package ycs77/laravel-form-field-type without Composer
On this page you can find all versions of the php package ycs77/laravel-form-field-type. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ycs77/laravel-form-field-type
More information about ycs77/laravel-form-field-type
Files in ycs77/laravel-form-field-type
Package laravel-form-field-type
Short Description Fast set the form fields of the Laravel form builder.
License MIT
Homepage https://github.com/ycs77/laravel-form-field-type
Informations about the package laravel-form-field-type
Laravel form field type
Fast set the form fields of the Laravel form builder.
Install
Laravel form builder must be installed.
Via Composer
Publish config
Suggestions can be matched with Laravel form builder BS4.
Usage
First, create one form fields class:
The commonly used fields can be defined in config/field.php
and the FieldType will be loaded automatically.
In this case, the 'phone' fields have been defined in config/field.php, so they can be used directly.
app/FormFields/UserFormFields
Second, add FormFields, FormFieldsTrait to controller:
app/Http/Controllers/MyController
Custom validate message
Add property validateMessage
to controller.
Custom failed message
Add property failedMessage
to controller.
Custom lang path
Add property langPath
to controller.
Methods
type
If you enter a field defined by config/field.php
, the field will be returned.
Return the complete type of the specified type of data:
Get field:
Or use same:
Get exist field type:
Override field type:
If use front_rules
attribute, only front use this rules:
fields
The fields
method is to traverse the array to execute the field
method.
Parsing field data:
list
Return the ID of each field:
casts
Transform to the right type:
form
Compile the form:
rules
If use back_rules
attribute, only back use this rules.
Parsing validation rules: