Laravel 5 – 13
PHP 7.2+
Low commit activity in last 18 months
A long-lived project that still receives updates
A powerful form builder
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

phpunit/phpunit
^8.5
mockery/mockery
^1.3
^5.1.3|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0

Runtime

^5.1.3|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0
^5.1.3|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0
^5.1.3|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0
^5.1.3|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0
^5.1.3|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0
^5.1.3|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0
^5.1.3|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0
^5.1.3|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0
kylekatarnls/html-object
^1.5
 Project Readme

Former

A Laravelish way to create and format forms

Latest Stable Version Total Downloads

Former outputs form elements in HTML compatible with your favorite CSS framework (Bootstrap and Foundation are currently supported). Former also handles repopulation after validation errors, including automatically rendering error text with affected fields.

Introduction

Former provides a fluent method of form creation, allowing you to do:

Former::framework('TwitterBootstrap3');

Former::horizontal_open()
  ->id('MyForm')
  ->rules(['name' => 'required'])
  ->method('GET');

  Former::xlarge_text('name') # Bootstrap sizing
    ->class('myclass') # arbitrary attribute support
    ->label('Full name')
    ->value('Joseph')
    ->required() # HTML5 validation
    ->help('Please enter your full name');

  Former::textarea('comments')
    ->rows(10)
    ->columns(20)
    ->autofocus();

  Former::actions()
    ->large_primary_submit('Submit') # Combine Bootstrap directives like "lg and btn-primary"
    ->large_inverse_reset('Reset');

Former::close();

Every time you call a method that doesn't actually exist, Former assumes you're trying to set an attribute and creates it magically. That's why you can do in the above example ->rows(10) ; in case you want to set attributes that contain dashes, just replace them by underscores : ->data_foo('bar') equals data-foo="bar". Now of course in case you want to set an attribute that actually contains an underscore you can always use the fallback method setAttribute('data_foo', 'bar'). You're welcome.

This is the core of it, but Former offers a lot more. I invite you to consult the wiki to see the extent of what Former does.


Installation

Require Former package using Composer:

composer require anahkiasen/former

Publish config files with artisan:

php artisan vendor:publish --provider="Former\FormerServiceProvider"

App.php config for Laravel 5.4 and below

For Laravel 5.4 and below, you must modify your config/app.php.

In the providers array add :

Former\FormerServiceProvider::class

Add then alias Former's main class by adding its facade to the aliases array in the same file :

'Former' => 'Former\Facades\Former',

Documentation

Please refer to the wiki for the full documentation.