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

14 lines
190 B
PHP
Raw Normal View History

2018-09-27 10:01:25 +00:00
<?php
2021-07-12 08:46:06 +00:00
if (! function_exists('cart')) {
2021-07-12 04:51:12 +00:00
/**
* Cart helper.
*
* @return \Webkul\Checkout\Cart
*/
function cart()
{
return app()->make('cart');
}
}