This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors.
You can install the package via composer:
composer require codanux/components
php artisan vendor:publish --provider="Codanux\Components\ComponentsServiceProvider"
<x-input label="Name" name="name" class="m-2" type="text" />
<x-textarea label="Body" name="body" rows="4" />
<x-radio :options="[1 => 'First', 2 => 'Two']" label="Radio" name="radio"/>
<x-select :options="[1 => 'First', 2 => 'Two']" label="Select" name="select"/>
<x-checkboxes :options="[1 => 'First', 2 => 'Two']" label="Checkboxes" name="checkboxes[]"/>
Label or Error customize
"{field}-{attribute}" match field attributes attach
<x-input label-id="label_1" label-class="mb-2" />
<x-textarea label-class="mb-2" error-id="error_1" error-class="mt-2" />
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email codanux@hotmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.# components