2018-09-27 10:01:25 +00:00
|
|
|
<?php
|
2018-09-28 12:54:26 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
?>
|