defmodule MangoWeb.LayoutView do | |
use MangoWeb, :view | |
import MangoWeb.CartView, only: [cart_count: 1] | |
def cart_link_text(conn) do | |
raw """ | |
<i class="fa fa-shopping-cart"></i> <span class="cart-count">#{cart_count(conn)}</span> | |
""" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment