企业🤖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 !!} ```