<?php
namespace App\Komma\ShoppingCart;
use App\Komma\ShoppingCart\Interfaces\ShoppingCartInterface;
use Illuminate\View\View;
class ShoppingCartComposer
{
/**
* Bind data to the view.
*
* @param View $view
* @return void
*/
public function compose(View $view)
{
$view->with('shoppingCart', app(ShoppingCartInterface::class));
}
}