Skip to content

aardling/laravel-livewire-forms

 
 

Repository files navigation

Laravel Livewire Forms

Package to easily configure Livewire forms with a set of existing fields.

Installation

You can install the package via composer:

composer require codedor/laravel-livewire-forms

You can publish the config file with:

php artisan vendor:publish --tag="laravel-livewire-forms-config"

This is the contents of the published config file:

return [
    'defaults' => [
        'inputClass' => '',
        'divClass' => 'col-6',
    ]
];

Optionally, you can publish the views using

php artisan vendor:publish --tag="laravel-livewire-forms-views"

Usage

@livewire('registration-form')

Documentation

For the full documentation, check here.

Testing

vendor/bin/pest

Changelog

Please see CHANGELOG for more information on what has changed recently.

Upgrading

Please see UPGRADING for more information on how to upgrade to a new version.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 82.5%
  • Blade 17.5%