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

14 lines
189 B
PHP
Raw Normal View History

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