App\Http\Controllers\StoreController::getListing PHP 메소드

getListing() 공개 메소드

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));
    }