2018-09-27 10:01:25 +00:00
|
|
|
<?php
|
2018-10-04 14:16:23 +00:00
|
|
|
|
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');
|
|
|
|
|
}
|
|
|
|
|
}
|