App\Http\Controllers\StoreController::getListing PHP Method

getListing() public method

public getListing ( )
    public function getListing()
    {
        return view('store.index')->with('skip_back_link', true)->with('cart', $this->userCart())->with('products', Store\Product::latest()->simplePaginate(30));
    }