@php use App\Libraries\CartChannel;use App\Services\CMS\ProductService; @endphp @extends('foreground.layouts.frame') @section('titleBanner')

壹然 evernature

Banner首圖
商品專區
@endsection @section('body') @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

特價 {{ $productSalePrice }}

售價 {{ $productPrice }}

{{-- 規格與數量,使用 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 !!}

相關推薦

@include('foreground.layouts.pagetop') @include('foreground.layouts.footer') @endsection