Exemplo n.º 1
0
 /**
  * Get all published widgets.
  *
  * @return \Illuminate\Support\Collection
  */
 protected function getWidgetsToDisplay()
 {
     // Note:
     // This widget has menu_assignment global scope attached in the query.
     $widgets = Widget::with('permissions')->published()->orderBy('order', 'asc')->get();
     return $widgets->groupBy('position');
 }