Releases: orchestral/html
Releases · orchestral/html
v3.1.10
- Transform instance of Eloquent to Eloquent Query Builder when generating a table.
v3.1.9
- Allow escaping html entities when given an instance of
Illuminate\Contracts\Support\Htmlable
.
- Allow table column value to properly handle instance of
Illuminate\Contracts\Support\Renderable
.
v3.1.8
- Set the
Orchestra\Html\Table\Grid::$model
as array by default to avoid class to throw an error when manually setting the rows.
- Avoid rebuilding model to array when it's an empty array.
v3.1.7
- Don't double escape in
Orchestra\Html\Support\FormBuilder::option()
.
- Allow
Orchestra\Html\Support\FormBuilder::checkbox()
to work with eloquent relationship.
- Fixes incorrect param type in
Orchestra\Html\Support\HtmlBuilder
codeblock.
v3.1.6
- Rework on configuration binding. Solve issue where configuration is missing when binding occur earlier than service provider booting process especially during testing.
- Use new
Orchestra\Html\HtmlBuilder::attributable()
on table default views.
v3.1.5
- Add
Orchestra\Html\HtmlBuilder::attributable()
method.
v3.0.2
- Add
Orchestra\Html\HtmlBuilder::attributable()
method.
v3.1.4
- Add support for Laravel 5 Config.
- Add tel and time input field.
- Allow inserting just the basic Eloquent model into the
Orchestra\Html\Table\Grid::with()
method.
v3.1.3
- Add a new
Orchestra\Html\Grid::find()
contracts and implements it on:
Orchestra\Html\Form\Fieldset
.
Orchestra\Html\Table\Grid
.
v3.1.2
- Improved performances by reducing call within
Illuminate\Container\Container
.