for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Arrilot\Widgets;
class Facade extends \Illuminate\Support\Facades\Facade
{
protected static function getFacadeAccessor()
return 'arrilot.widget';
}
/**
* Get the widget group object.
*
* @param $name
* @return WidgetGroup
*/
public static function group($name)
return app('arrilot.widget-group-collection')->group($name);