Laravie Html Versions Save

🔨 HTML and Form Builders for the Laravel Framework

v5.7.0

5 years ago

Changes

  • Update support to Laravel Framework 5.7.

v5.6.4

5 years ago

Changes

v5.6.3

6 years ago

Added

  • Added range(), week() and month() to FormBuilder.

Fixes

  • Fixes time() to accept DateTime instance.

v5.6.2

6 years ago

Fixes

  • Fix issue where defaults has a higher priority then the attributes. (@ b3a1024)
  • Add missing Illuminate\Contracts\Support\Htmlable import. (@c1f1999)

v5.6.1

6 years ago

Changes

  • Validation in select field for boolean value of selected option. (@AndersonFriaca)
  • Placeholder for select element is no longer hidden. (@ilyadrv)

Fixes

  • Fix form method of hidden input '_method' is preserved on next request. (@tortuetorche)
  • Fix bug with radio button not being checked. (@devinfd)
  • Fix selected to check for using Illuminate\Support\Collection::contains() whenever possible. (@VinceG)

v5.5.2

6 years ago

Changes

  • Validation in select field for boolean value of selected option. (@AndersonFriaca)

Fixes

  • Fix form method of hidden input '_method' is preserved on next request. (@tortuetorche)
  • Fix selected to check for using Illuminate\Support\Collection::contains() whenever possible. (@VinceG)

v5.6.0

6 years ago

Added

  • Add Collective\Html\FormBuilder::getModel() method. (@thetar)

Changes

  • Update support to Laravel Framework 5.6.
  • Use strict comparison to check selected values when building select options. (@muvasco)
  • Form method of hidden input '_method' is preserved on next request. (@tortuetorche)
  • Allows Illuminate\Http\Request to be optional. (Victor Isadov)
  • Replace + operator with array_merge() method. (@izniburak)
  • Remove PHP_EOL statements from HTML output. (@nickurt)

v5.5.1

6 years ago

Added

  • Add Collective\Html\FormBuilder::getModel() method. (@thetar)

Changes

  • Use strict comparison to check selected values when building select options. (@muvasco)
  • Form method of hidden input '_method' is preserved on next request. (@tortuetorche)
  • Allows Illuminate\Http\Request to be optional. (Victor Isadov)
  • Replace + operator with array_merge() method. (@izniburak)
  • Remove PHP_EOL statements from HTML output. (@nickurt)

v5.5.0

6 years ago

Changes

  • Update support to Laravel Framework 5.5.

v5.4.1

6 years ago

Added

  • Add Collective\Html\BladeServiceProvider.
  • Add Collective\Html\FormBuilder::entities().
  • Add support to build attributes from nested array.
  • Add support for boolean type attributes.

Changes

  • Call get model value attribute recursively to allow mutating form attribute in related models.

Removed

  • Removed Collective\Html\HtmlBuilder::escapeAll().