@php use App\Libraries\CartChannel;use App\Services\CMS\ProductService; @endphp @extends('foreground.layouts.frame') @section('titleBanner') Banner描述 @endsection @section('body') @include('foreground.layouts.gtm') @include("foreground.layouts.alert") @include('foreground.layouts.header', [ 'current' => 'product', ])
{{ Breadcrumbs::render("foreground.product", $product, $ancestors) }}
@foreach($images as $image)
{{ $image->title }}
@endforeach
@foreach($images as $image)
{{ $image->title }}
@endforeach

{{ $product->title }}

{{-- 收藏。使用 livewire, view: resources/views/livewire/product/favorite.blade.php --}}
@empty(!$product->tags) @foreach($product->tags as $tag) {{ $tag }} @endforeach @endempty

售價 {{ $productPrice }}

特價 {{ $productSalePrice }}

{{-- 規格與數量,使用 livewire: resources/views/livewire/product/variants.blade.php --}}
@if ($isInFeature)

@elseif($isBetween)
@csrf

@csrf

@elseif($isExpired)

@endif

付款方式

  • 信用卡(VISA / Master / JCB)
  • ATM

配送方式

  • 宅配 {{ $shippingFeeHomeDelivery }} 元
  • 全店滿 {{ $freeShipping }} 元免運

@if(!empty(ProductService::getFirstAttribute($product)->number))

產品編號

  • {{ ProductService::getFirstAttribute($product)->number }}
@endif @if(!empty($product->summary))

產品特色

{!! $product->summary !!}
@endif

產品規格

    @foreach($productVariantFirstAttributes as $productVariantFirstAttribute)
  • {{ $productVariantFirstAttribute->title }}
  • @endforeach
{!! $product->description !!}

{!! $product->attention_note !!}

加購專享

相關推薦

@foreach($randomProducts as $randomProduct) @if($loop->index >= 3) @break @endif @endforeach
@include('foreground.layouts.pagetop') @include('foreground.layouts.footer') @vite("resources/js/foreground/sliderDetail.js") @vite("resources/js/foreground/sliderMultiple.js") @vite("resources/js/foreground/additionProducts.js") @endsection