本文目录
一、商品详情
1.1 增加商品销量字段
运行命令php artisan make:migration add_sales_to_goods_table --table=goods
写入:
Schema::table('goods', function (Blueprint $table) {
$table->integer('sales')->default(0)->after('stock')->comment('销量');
});
接着给评论表增加一个评分字段运行命令:php artisan make:migration add_star_to_comments_table --table=comments
写入:
Schema::table('comments', function (Blueprint $table) {
$table->tinyInteger('star')->default(0)->after('rate')->comment('评星');
});
运行迁移:php artisan migrate
:
1.2 创建商品控制器
运行命令php artisan make:controller Web/GoodsController
创建商品控制器:
写入方法:
<?php
namespace App\Http\Controllers\Web;
use App\Http\Controllers\BaseController;
use App\Models\Good;
class GoodsController extends BaseController
{
/**
* 商品详情
*/
public function show($id) {
// 商品详情
$goods = Good::where('id', $id)
// ->with('comments.user')
->with([
'comments.user' => function ($query) {
$query->select('id', 'name', 'avatar');
}
])
->first()
->append('pics_url'); // 追加字段
// 相似商品
$like_goods = Good::where('is_on', 1)
->select('id', 'title', 'price', 'cover')
->where('category_id', $goods->category_id)
->inRandomOrder()
->take(10)
->get();
// 返回数据
return $this->response->array([
'good' => $goods,
'like_goods' => $like_goods
]);
}
}
修改用户模型增加修改器:
/**
* 追加额外的字段
*/
protected $appends = ['avatar_url'];
public function getAvatarUrlAttribute() {
return oss_url($this->avatar);
}
增加商品修改器:
/**
* pics oss url
*/
public function getPicsUrlAttribute() {
// 使用集合处理每一项元素,返回处理后的新的集合
return collect($this->pics)->map(function ($item) {
return oss_url($item);
});
}
1.3 创建商品详情路由
商品的详情是不需要登陆的:
// 商品详情
$api->get('goods/{good}', [GoodsController::class, 'show']);
1.4 测试效果
可以看到这个商品详情我们该有的数据都有了,有商品的评论评分,销量,以及相似商品。
在学习的php的路上,如果你觉得本文对你有所帮助的话,那就请关注点赞评论三连吧,谢谢,你的肯定是我写博的另一个支持。