fixing pickup
This commit is contained in:
parent
14841d08a4
commit
d81feb0196
|
|
@ -6,7 +6,7 @@ use Illuminate\Http\Request;
|
|||
use Illuminate\Support\Str;
|
||||
use Sarga\API\Http\Resources\Checkout\CartResource;
|
||||
use Sarga\API\Http\Resources\Checkout\PickupAddress;
|
||||
use Webkul\Checkout\Facades\Cart;
|
||||
use Sarga\Shop\Facades\ShoppingCart as Cart;
|
||||
use Webkul\Payment\Facades\Payment;
|
||||
use Webkul\RestApi\Http\Controllers\V1\Shop\Customer\CheckoutController;
|
||||
use Webkul\Sales\Repositories\OrderRepository;
|
||||
|
|
|
|||
|
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
namespace Sarga\Shop\Facades;
|
||||
|
||||
class ShoppingCart extends \Illuminate\Support\Facades\Facade
|
||||
{
|
||||
/**
|
||||
* Get the registered name of the component.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected static function getFacadeAccessor()
|
||||
{
|
||||
return 'shoppingcart';
|
||||
}
|
||||
}
|
||||
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
namespace Sarga\Shop;
|
||||
|
||||
use Webkul\Checkout\Models\CartAddress;
|
||||
|
||||
class ShoppingCart extends \Webkul\Checkout\Cart
|
||||
{
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue