{% if mobile is not defined %}{% set mobile = false %}{% endif %}
{# Heroicon name: home #}
{{ 'Dashboard'|t('market') }}
{# Heroicon name: clipboard-list #}
{{ 'Orders'|t('market') }}
{# New orders count #}
{% set counts = market.getOrderCountByStatus() %}
{% set newCount = null %}
{% for count in counts %}
{% if count.handle == 'new' %}
{% set newCount = count %}
{% endif %}
{% endfor %}
{% if newCount and newCount.orderCount > 0 %}
{{ newCount.orderCount }}
{% endif %}
{# Heroicon name: gift #}
{{ 'Products'|t('market') }}
{# Heroicon name: photograph #}
{{ 'Files'|t('market') }}
{# Heroicon name: truck #}
{{ 'Shipping'|t('market') }}
{# Heroicon name: office building #}
{{ 'Shop Front'|t('market') }}