ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# 商品详情页 ~~~ {{$goods['title']}} {{$goods['description']}} {{$goods->view}} ~~~ 销售价格 ``` {{$goods->skus[0]['now_price']}} ``` 原价 ``` {{$goods->skus[0]['pre_price']}} ``` SKUID ``` {{$goods->skus[0]['id']}} ``` 销售属性 ``` @foreach($skuAttributes as $skuAttribute) {{$skuAttribute->name}}: @foreach($skuAttribute->option as $option) {{$skuAttribute->name}}:{{$option}} @endforeach @endforeach ``` 商品相册 ``` @foreach($goods->cover_paths as $key => $cover_path) {{$cover_path}} @endforeach ``` 商品详情 ``` {!! $goods->content !!} ```