webfactorybulgaria/translatablebootforms

Form model binding for translated fields, use BootForms and Translatable.
58
Install
composer require webfactorybulgaria/translatablebootforms
Latest Version:v4.0.1
PHP:>=5.4.0
License:MIT
Last Updated:Jan 6, 2016
Links: GitHub  ·  Packagist
Maintainer: webfactorybulgaria

TranslatableBootForms

TranslatableBootForms is a Laravel package built on top of BootForms and Laravel Translatable, it enables form model binding on translated fields.

Installing with Composer

You can install this package via Composer with this command:

composer require typicms/translatablebootforms

Installation in Laravel

Modify the providers array in config/app.php to include the service provider:

'providers' => [
    //…
    TypiCMS\TranslatableBootForms\TranslatableBootFormsServiceProvider::class,
],

Run composer update

Add the BootForm and Translatable facades to the aliases array in `config/app.php:

'aliases' => [
    //…
    'BootForm' => AdamWathan\BootForms\Facades\BootForm::class,
    'Translatable' => Dimsav\Translatable\Translatable::class,
],

You can now start using BootForms by calling methods directly on the BootForm facade:

BootForm::text('title', 'en[title]')

Documentation

BootForms
https://github.com/adamwathan/bootforms
Laravel-Translatable
https://github.com/dimsav/laravel-translatable

Related Packages

typicms/laravel-translatable-bootforms

Empowers adamwathan/bootforms with spatie/laravel-translatable.

31,670 3
typicms/nestablecollection

A Laravel Package that extends Collection to handle unlimited nested items follo...

340,113 88
spatie/laravel-sluggable

Generate slugs when saving Eloquent models

13,300,010 1,552
barryvdh/laravel-form-bridge

This packages integrates Symfony Form Component in Laravel.

375,847 163
ink/ink-sluggable

Easy creation of slugs for Eloquent and EloquentTranslatable models in Laravel 4...

3,579 3