6
0
Fork 0
release
李静 2021-12-15 20:45:48 +08:00
parent bd11077e31
commit 53c66e07c8
9 changed files with 7 additions and 10 deletions

View File

@ -3,7 +3,7 @@
namespace App\Endpoint\Api\Http\Controllers\Product;
use App\Endpoint\Api\Http\Controllers\Controller;
use App\Endpoint\Api\Http\Resources\ProductSku\ProductSkuTinyResource;
use App\Endpoint\Api\Http\Resources\ProductSkuTinyResource;
use App\Models\ProductSku;
class HotController extends Controller

View File

@ -3,8 +3,8 @@
namespace App\Endpoint\Api\Http\Controllers\Product;
use App\Endpoint\Api\Http\Controllers\Controller;
use App\Endpoint\Api\Http\Resources\ProductSku\ProduckSkuResource;
use App\Endpoint\Api\Http\Resources\ProductSku\ProductSkuTinyResource;
use App\Endpoint\Api\Http\Resources\ProduckSkuResource;
use App\Endpoint\Api\Http\Resources\ProductSkuTinyResource;
use App\Events\ProductSku\Viewed;
use App\Helpers\Paginator as PaginatorHelper;
use App\Models\ProductPart;

View File

@ -1,6 +1,6 @@
<?php
namespace App\Endpoint\Api\Http\Resources\ProductSku;
namespace App\Endpoint\Api\Http\Resources;
use Illuminate\Http\Resources\Json\JsonResource;

View File

@ -2,7 +2,6 @@
namespace App\Endpoint\Api\Http\Resources;
use App\Endpoint\Api\Http\Resources\ProductSku\ProductSkuTinyResource;
use Illuminate\Http\Resources\Json\JsonResource;
class ProductSkuFavoriteResource extends JsonResource

View File

@ -1,6 +1,6 @@
<?php
namespace App\Endpoint\Api\Http\Resources\ProductSku;
namespace App\Endpoint\Api\Http\Resources;
use Illuminate\Http\Resources\Json\JsonResource;

View File

@ -1,6 +1,6 @@
<?php
namespace App\Endpoint\Api\Http\Resources\ProductSku;
namespace App\Endpoint\Api\Http\Resources;
use Illuminate\Http\Resources\Json\JsonResource;

View File

@ -2,7 +2,6 @@
namespace App\Endpoint\Api\Http\Resources;
use App\Endpoint\Api\Http\Resources\ProductSku\ProductSkuTinyResource;
use Illuminate\Http\Resources\Json\JsonResource;
class ProductViewLogResource extends JsonResource

View File

@ -2,7 +2,6 @@
namespace App\Endpoint\Api\Http\Resources;
use App\Endpoint\Api\Http\Resources\ProductSku\ProductSkuSimpleResource;
use Illuminate\Http\Resources\Json\JsonResource;
class ShoppingCartItemResource extends JsonResource

View File

@ -2,7 +2,7 @@
namespace App\Services;
use App\Endpoint\Api\Http\Resources\ProductSku\ProductSkuSimpleResource;
use App\Endpoint\Api\Http\Resources\ProductSkuSimpleResource;
use App\Endpoint\Api\Http\Resources\ShippingAddressResource;
use App\Endpoint\Api\Http\Resources\UserCouponResource;
use App\Exceptions\BizException;