Download the PHP package codions/laravel-livewire-forms without Composer

On this page you can find all versions of the php package codions/laravel-livewire-forms. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-livewire-forms

Laravel Livewire Forms

Laravel Livewire form component with declarative Bootstrap 5 fields and buttons.

Installation

Usage

Make a new form:

Declare fields:

Declare buttons:

Declare rules:

Declare an action (notice the use of ->click('createUser') in the button example above:

Form Slider

Create a form that slides out by specifying a title, layout and route to use:

Setting Initial Data

You can set the initial form data / defaults via the data array property in your component mount method:

Accessing Data

Use the data method in the component to access current form data (you can use dot notation for array values):

Data Binding

Most fields allow you to change the way livewire binds data via helper methods that are chained to fields e.g.:

Sizing

Many fields also allow you to specify a size for the input e.g.:

Disabling

Some fields allow you to disable or set them to readonly, and even plaintext for inputs:

Helper Text

Specify helper text for a field by using the help method:

Available Fields

Alert ($message, $style = 'success')

An alert box.

The $style parameter accepts a bootstrap alert style e.g. success, danger, primary, etc. Use the dismissible method to make the alert dismissible.

Available methods: dismissible

Arrayable ($name, $label = null)

An array of fields.

Available methods: fields, help, disabled

Bootstrap Grid

A bootstrap support to the form.

Row ($label = null) and RowColumn ($label = null)

An array of fields display in a Bootstrap Row or Column

Available methods: fields, help, disabled, isColumn, col_class

Button ($label = 'Submit', $style = 'primary')

A button used for actions and links.

The $style parameter accepts a bootstrap button style e.g. primary, outline-secondary, link, etc. Use the block method to make a button full width.

Available methods: block, click, href, route, url

Checkbox ($name, $label)

A checkbox field.

Use the switch method to style the checkbox as a switch.

Available methods: switch, help, instant, addAttrs, defer, lazy, debounce, disabled

Checkboxes ($name, $label = null)

An array of checkbox fields.

Available methods: options, switch, help, instant, addAttrs, defer, lazy, debounce, disabled

Color ($name, $label = null)

A color picker field.

Available methods: small, large, containerSize, help, instant, addAttrs, defer, lazy, debounce, disabled, readonly

Conditional

A statement used to conditionally show fields.

Available methods: if, elseif, else

DynamicComponent ($name, $attrs = [])

A field used to display dynamic third-party components.

This would translate to <x-honey/> and <x-honey recaptcha="recaptcha"/> in your form.

File ($name, $label = null)

A file upload field.

Use the multiple method to allow multiple file uploads. Optionally specify the filesystem disk to use via the disk method (used for linking to files, defaults to the filesystem config default).

Available methods: disk, multiple, help, disabled

Input ($name, $label = null)

An input field.

The type method accepts a standard HTML input type. As with other inputs, use small or large to resize an input. Input fields also support appends/prepends, and even plaintext.

Available methods: small, large, containerSize, help, instant, addAttrs, defer, lazy, debounce, disabled, readonly, placeholder, type, append, prepend, plaintext

Radio ($name, $label = null)

A radio field.

Available methods: options, switch, help, instant, addAttrs, defer, lazy, debounce, disabled

Select ($name, $label = null)

A select dropdown field.

Available methods: options, small, large, containerSize, help, instant, addAttrs, defer, lazy, debounce, disabled, placeholder

Textarea ($name, $label = null)

A textarea field.

Available methods: small, large, containerSize, help, instant, addAttrs, defer, lazy, debounce, disabled, readonly, placeholder, rows

View ($name, $data = [])

Used to render a custom Blade view inside the form.

Sameple Example

Code

Credits

License

Laravel Themes Manager is open-sourced software licensed under the MIT license.


All versions of laravel-livewire-forms with dependencies

PHP Build Version
Package Version
Requires laravel/framework Version ^8.0|^9.0|^10.0
livewire/livewire Version ^2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package codions/laravel-livewire-forms contains the following files

Loading the files please wait ....