Skip to content

Releases: pingpong-labs/sky

Version 2.1.5 Stable

17 Jul 20:44
Compare
Choose a tag to compare
  • Added hideWhen feature to menu item class. This feature is helpful for hiding specific menu item. The menu item will hidden if the callback result is returning true value.
Menu::make('main', function () {
    $menu->url('foo','Foo')->hideWhen(function () {
      // return boolean
      return Auth::check();
    });
});

Version 2.1.4 Stable

08 Jul 04:40
Compare
Choose a tag to compare

Version 2.1.3 Stable

30 Jun 08:24
Compare
Choose a tag to compare
  • Fix invalid path for fresh install of pingpong/generators package.

Version 2.1.2 Stable

30 Jun 08:23
Compare
Choose a tag to compare
  • Improved ordering feature in pingpong/menus package.
  • Added new feature: allow to modify generator templates.

Version 2.1.1 Stable

29 Jun 06:39
Compare
Choose a tag to compare
  • Added back modify method to Pingpong\Menus\Menu class.
Menu::modify('main', function ($menu) {
    //
});
  • Now you can specify menu order via ->order method.
$menu->add(['title' => 'Foo', 'url' => 'foo'])->order(1);
$menu->url('foo', 'Foo', [])->order(2);
$menu->route('home', 'Home', [], [])->order();
  • Now you can create a menu via make method.
Menu::make('main', function ($menu) {
    //
});

Version v2.1.0 Stable

27 Jun 17:54
Compare
Choose a tag to compare
  • Added full support for Laravel 5.1
  • Testing component now removed from pingpong/sky. But, you still can pull the package as standalone package.
  • Since Laravel 5.1 released with LTS, pingpong/sky will also released with LTS.
  • More

Version 2.0.21 Stable

24 Jun 06:16
Compare
Choose a tag to compare

Version 2.0.20 Stable

24 Jun 06:14
Compare
Choose a tag to compare
  • Added new modify method to Pingpong\Menus\Menu class. This is helpful for modifying menu instance. More information available in pingpong/sky documentation website.
  • Make pingpong/menus service provider load as deferred.
  • Changed console info message in module:use command.

Version 2.0.19 Stable

24 Jun 06:10
Compare
Choose a tag to compare
  • Added new two methods: whereTitle and findBy to Pingpong\Menus\MenuBuilder class. For more information, you may visit the pingpong/menus documentation.

Version 2.0.18 Stable

24 Jun 06:08
Compare
Choose a tag to compare
  • Move way of registration modules to the register method in Pingpong\Modules\Providers\BootstrapServiceProvider class.