You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
56 lines
1.2 KiB
<?php
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\AgentProduct;
|
|
use App\Models\UserFav;
|
|
|
|
/**
|
|
* 用户收藏
|
|
* Class UserFavController
|
|
* @package App\Http\Controllers\Api
|
|
*/
|
|
class UserFavController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
$list = UserFav::query()
|
|
->with([
|
|
'agentProduct:id,price,original_price',
|
|
'product:id,title,pictures',
|
|
])
|
|
->where('user_id', $this->user_id)
|
|
->select('id', 'agent_product_id', 'product_id', 'created_at')
|
|
->orderBy('id', 'DESC')
|
|
->simplePaginate(15);
|
|
return $this->success($list);
|
|
}
|
|
|
|
public function create()
|
|
{
|
|
$id = (int)request()->input('id');
|
|
|
|
$agent_product = AgentProduct::find($id);
|
|
if (!$agent_product) {
|
|
return $this->error('产品不存在或已被删除');
|
|
}
|
|
|
|
//如果不存在则创建
|
|
UserFav::query()->firstOrCreate([
|
|
'user_id' => $this->user_id,
|
|
'agent_product_id' => $agent_product->id,
|
|
'product_id' => $agent_product->product_id,
|
|
]);
|
|
|
|
return $this->success();
|
|
}
|
|
|
|
public function delete()
|
|
{
|
|
$id = (int)request()->input('id');
|
|
|
|
UserFav::where('user_id', $this->user_id)->find($id)->delete();
|
|
return $this->success();
|
|
}
|
|
}
|