Skip to content

Releases: arrilot/laravel-widgets

3.5.0

10 Jul 14:11
Compare
Choose a tag to compare

L5.0 support has been dropped.
Deprecated @async-widget directive was removed. Use @asyncWidget

3.4.2

14 Jun 07:09
Compare
Choose a tag to compare
Merge pull request #48 from yajra/patch

Fix #46 - config() error.

3.4.1

13 Jun 11:52
Compare
Choose a tag to compare

3.4.0

21 May 19:14
Compare
Choose a tag to compare

Widget groups were extracted from WidgetFactory.

app("arrilot.widget-group-collection") has been introduced

3.3.0

26 Jan 20:50
Compare
Choose a tag to compare

Configurable stubs

3.2.0

13 Nov 15:29
Compare
Choose a tag to compare

3.1.3

13 Nov 15:25
Compare
Choose a tag to compare

3.1.1

13 Jul 21:25
Compare
Choose a tag to compare

There are two significant changes in async and reloadable widgets:

  1. They no longer require jquery. Set use_jquery_for_ajax_calls to true in the config file if you prefer to have it instead of native javascript.
  2. They use GET request instead of POST to load widget content now.

3.0.2

07 Jul 22:02
Compare
Choose a tag to compare

Added support for brand new View Expressions.
Now {{ }} can be used instead of {!! !!} in Laravel 5.1

A bunch of internal changes too.

3.0.0

29 Jun 19:53
Compare
Choose a tag to compare

Changelog:

  1. Widget configuration has been changed. There is a single protected $config property now so you do not need to define your own props for every single config key. Nothing was changed in the way widgets are called.
  2. The generator by default creates a view too now. This can be disabled by--plain option
  3. Imports from custom namespaces are no longer supported, but you can use FQCN now.
  4. Container is fully customizable now (except id).
  5. @widget and @asyncWidget are now resolved without facades now so you may get rid of them entirely if you want.

For more info please read the readme: https://github.com/Arrilot/laravel-widgets/blob/master/README.md