LaravelPackages.net
Acme Inc.
Toggle sidebar
brainfab/laravel-form

Use Symfony Form component with Laravel framework

13
1
About brainfab/laravel-form

brainfab/laravel-form is a Laravel package for use symfony form component with laravel framework. It currently has 1 GitHub stars and 13 downloads on Packagist. Install it with composer require brainfab/laravel-form. Discover more Laravel packages by brainfab or browse all Laravel packages to compare alternatives.

Last updated

Use Symfony Form component with Laravel framework

Latest Stable Version Total Downloads Latest Unstable Version License Code Climate

Under construction

Installation

Require this package with composer:

composer require brainfab/laravel-form

After updating composer, add the ServiceProvider to the providers array in config/app.php

Brainfab\LaravelForm\LaravelFormsServiceProvider::class,

Add the Facade to the aliases array in config/app.php

'FormFactory' => Brainfab\LaravelForm\Facades\FormFactory::class,

(optional) Copy the package config to your local config with the publish command:

php artisan vendor:publish --tag=config

(optional) Copy the package views to your local views/vendor folder with the publish command:

php artisan vendor:publish --tag=views

Console

Generate form class: php artisan make:form 'App\Forms\UserForm'

Usage example

app/Forms/UserForm.php

<?php

namespace App\Forms;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\EmailType;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;

class UserForm extends AbstractType
{
    /**
     * {@inheritdoc}
     */
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder->add('name', TextType::class, [
            'rules' => 'required|min:6',
            'label' => 'Name'
        ]);

        $builder->add('email', EmailType::class, [
            'rules' => 'required|email',
            'label' => 'Email'
        ]);

        $builder->add('save_btn', SubmitType::class, [
            'label' => 'Save'
        ]);
    }

    /**
     * @param OptionsResolver $resolver
     */
    public function configureOptions(OptionsResolver $resolver)
    {
        //set default options
        $resolver->setDefaults([]);
    }
}

app/Http/Controllers/UserController.php

<?php

namespace App\Http\Controllers;

use App\Forms\UserForm;
use Brainfab\LaravelForm\Controller\LaravelForm;
use App\User;
use Illuminate\Http\Request;

class UserController extends Controller
{
    use LaravelForm;

    public function index(Request $request)
    {
        $user = new User();

        $form = $this->createForm(TestForm::class, $user);

        if ($request->isMethod('post')) {
            //submit request
            $form->handleRequest($request);

            if ($form->isValid()) {
                $user->save();
            }
        }

        return view('users', [
            'form' => $form->createView()
        ]);
    }
}

resources/views/users.blade.php

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>LaravelForm</title>
</head>
<body>

    {{form($form)}}

</body>
</html>
Comments