# WooCommerce Default Shopping Cart

**URL:** https://discourse.roots.io/t/woocommerce-default-shopping-cart/16571
**Category:** sage
**Tags:** woocommerce, sage9, blade
**Created:** 2019-09-11T13:25:02Z
**Posts:** 2

## Post 1 by @mike030194 — 2019-09-11T13:25:02Z

Hey,

I need help in adding the default shopping cart icon into the header.  
(Might be called the _mini-cart_, or _widget\_shopping\_cart_ I’m not sure!)

This is the link on how WooCommerce has it by default

> **[Storefront](https://themes.woocommerce.com/storefront/)**
>
> Just another WooThemes Demo site

See screenshot attached below:

 ![woocommerce-demo-cart-1](https://discourse.roots.io/uploads/default/original/2X/f/f3c310bb19866276b90e35728fefff7090d7ae42.jpeg)

Anyone one got an idea on what to put it in header.blade.php?

This is what I have currently. Any help would be appreciated!

```
<header class="site-header">
 <div class="container">
   <div class="columns is-marginless quick-links-menu-wrap">
     <div class="column is-one-fifth">
        <a href="{{ bloginfo('url') }}" class="logo is-inline-block">
          <img style="width: 250px;" src="@asset('images/logo.png')" alt="{{ __('Logo') }}">
        </a>
   </div>
     <div class="column">
       <div class="top-menu-wrap">
           <nav class="navbar is-flex" role="navigation" aria-label="main navigation">
              @if (has_nav_menu('primary_navigation'))
                {!! wp_nav_menu(['theme_location' => 'primary_navigation', 'menu_class' => 'nav']) !!}
              @endif
             <div class="social-media">
           </div>
           </nav>
       </div>
     </div>
 </div>
 </div>
</header>
```

---

## Post 2 by @system — 2019-10-23T13:25:50Z

This topic was automatically closed after 42 days. New replies are no longer allowed.
