Releases: orchestral/html
Releases · orchestral/html
v3.1.1
v3.1.0
v3.0.1
v3.0.0
- Update support for Laravel Framework v5.0.
- Simplify PSR-2 path.
- Replace
illuminate/html
. - Allow
Orchestra\Html\Form\Factory
to handle all request toIlluminate\Html\FormBuilder
. - Utilize both
illuminate/contracts
andorchestra/contracts
. - Update support for Laravel 5 paginator class.
- Resolve form template directly from config, allow developer to add additional form type.
- Add
Orchestra\Html\FormBuilder
, extendingIlluminate\Html\FormBuilder
to remove checkboxes macro. Orchestra\Html\Form\Field::getField()
can automatically render any object implementingIlluminate\Contracts\Support\Renderable
.
v2.2.4
- Allow
Orchestra\Html\Form\Factory
to handle all request toIlluminate\Html\FormBuilder
. - Allow
Orchestra\Html\Form\Field
to handle instance ofIlluminate\Support\Contracts\RenderableInterface
. - Allow to filter sortable columns either using
only
orexcept
option based on changes toOrchestra\Support\Traits\QueryFilterTrait
.
v2.2.3
- Add
Orchestra\Html\Table\Grid::searchable()
andOrchestra\Html\Table\Grid::sortable()
to facilitate searching and sorting. - Allow to retrieve instance of
Illuminate\Http\Request
andIlluminate\Translation\Translator
from within Form and Table builder. - Add
Orchestra\Html\Table\Grid::paginated()
helper method to access pagination state for current table. - Utilize
Illuminate\Support\Arr
.