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

14 lines
190 B
PHP
Executable File

<?php
if (! function_exists('cart')) {
/**
* Cart helper.
*
* @return \Webkul\Checkout\Cart
*/
function cart()
{
return app()->make('cart');
}
}