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

10 lines
171 B
PHP
Executable File

<?php
use Webkul\Checkout\Cart;
if (! function_exists('cart')) {
function cart()
{
return app()->make(Cart::class);
}
}
?>