sarga/packages/Webkul/Checkout/src/Http/helpers.php

10 lines
175 B
PHP

<?php
use Webkul\Checkout\Cart;
if (! function_exists('cart')) {
function cart()
{
return app()->make(Core::class);
}
}
?>