Owl\Http\Controllers\ItemController::index PHP Method

index() public method

public index ( )
    public function index()
    {
        $items = $this->itemService->getAllPublished();
        $templates = $this->templateService->getAll();
        return \View::make('items.index', compact('items', 'templates'));
    }