| 1 | <?php  | 
            ||
| 8 | class Menu extends AbstractWidget  | 
            ||
| 9 | { | 
            ||
| 10 | /**  | 
            ||
| 11 | * The configuration array.  | 
            ||
| 12 | *  | 
            ||
| 13 | * @var array  | 
            ||
| 14 | */  | 
            ||
| 15 | protected $config = [];  | 
            ||
| 16 | |||
| 17 | /**  | 
            ||
| 18 | * Treat this method as a controller action.  | 
            ||
| 19 | * Return view() or other content to display.  | 
            ||
| 20 | *  | 
            ||
| 21 | * @param \Yajra\CMS\Entities\Widget $widget  | 
            ||
| 22 | * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View  | 
            ||
| 23 | */  | 
            ||
| 24 | public function run($widget)  | 
            ||
| 38 | }  | 
            ||
| 39 |