Looking to hire Laravel developers? Try LaraJobs
This package is not available.

warcott-laravel-forms maintained by osi-open-source

Description
Warcott integration for the Laravel Framework
Author
Last update
2019/10/01 15:42 (dev-master)
License
Links
Downloads
16

Comments
comments powered by Disqus

Warcott Laravel Forms

It parses Warcott's json forms and displays a form. It uses Warcott Client library to fetch the data from the server. This library is in progress and not all field inputs from Warcott are supported. Behaviour from Preview of the form may vary as it is pure javascript realization.

Installation

Simply add the following line to your composer.json and run install/update:

"osi-open-source/warcott-laravel-form": "*"

Configuration

Publish the package config files to enter your credentials

php artisan vendor:publish --tag=warcott  --force

Usage

This is an example of displaying a form Layout in your view.

{{ warcottDisplay('domainKey') }}

For API consummation, mapping of data and form manupulation you can check Warcott Client's usage

Developers info

If you want to show all errors for unsupported fields you can change resources/views/fields/base.blade.php line
@includeIf('warcott::fields.'.($field['type'] ?? 'text'))
with
@include('warcott::fields.'.($field['type'] ?? 'text'))