Cơ bản
Nâng cao
SEO
{{-- Excerpt --}}
Mô tả sản phẩm
{{-- --}}
{{-- @if ($product->type === 'basic')
@include('livewire.tenant.backend.commerce.create-product.basic')
@endif --}}
@if ($product->type === 'has_attribute')
{{-- @include('livewire.tenant.backend.commerce.create-product.has_attribute') --}}
{{-- {{ dd($product->attributes) }} --}}
@livewire('tenant.backend.commerce.product.product-attribute-manager', ['product' => $product])
@endif
{{-- @livewire('tenant.backend.commerce.attribute-manager', ['product' => $product]) --}}
@livewire('tenant.backend.commerce.product.product-item-manager', ['product' => $product, 'items' => $product->items])
Trạng thái và Hiển thị
@if ($submitLabel === "Cập nhật")
@endif
{{--
--}}
{{-- Category --}}
Chuyên mục Sản phẩm
@if (!empty($product_categories))
@include('livewire.tenant.backend.commerce.update-product-category-select', ['product_categories' => $product_categories])
@else
chưa có danh mục nào!
@endif
Thêm chuyên mục
Varrexport: {{ var_export($product_category_ids) }}
{{-- Brand --}}
Thương hiệu
@if (!empty($brands))
@foreach ($brands as $brand)
@endforeach
@else
chưa có thương hiệu nào!
@endif
Thêm thương hiệu
{{-- Tags --}}
{{-- Featured iamge --}}
Ảnh đại diện
@if (!empty($product->featured_id))
{{ $featured_image('thumbnail') }}
@livewire('tenant.backend.media-popup', ['featured' => $product->featured_id])
@else
Click để tải file lên
@livewire('tenant.backend.media-popup', ['featured' => ''])
@endif