arrilot / laravel-widgets

Widgets for Laravel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Where to create widget groups.

umefarooq opened this issue · comments

Hi
I want to use widget groups, but don't know where to create groups so the are available to layout on each request.

You do not need to create widget groups, all you need is to start pushing widgets to them
Widget::group('sidebar')->position(5)->addWidget('widgetName1', $config1);
It's totally up to you to define where this lines should be