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

10 lines
175 B
PHP
Raw Normal View History

2018-09-27 10:01:25 +00:00
<?php
use Webkul\Checkout\Cart;
2018-09-27 10:01:25 +00:00
if (! function_exists('cart')) {
function cart()
{
2018-10-05 06:18:58 +00:00
return app()->make(Core::class);
2018-09-27 10:01:25 +00:00
}
}
?>