@extends('vendor-dashboard.layouts.app') @push('styles') @endpush @section('contents')
@csrf
{{--

Create Roles

--}}
Overview

Stock Status

Product Image

@foreach ($product?->images ?? [] as $image)
×
@endforeach

Product Attributes

@foreach ($attributesWithValues as $attribute) @include('vendor-dashboard.product.partials.attribute', [ '$attribute' => $attribute, 'product' => $product, ]) @endforeach

Product Variants

@foreach ($variants as $variant) @include('vendor-dashboard.product.partials.variant', ['variant' => $variant]) @endforeach

Status

Is Featured

Categories

    @foreach ($categories as $category)
  • @if ($category->children_nested && $category->children_nested->count() > 0)
      @foreach ($category->children_nested as $child)
    • @if ($child->children_nested && $child->children_nested->count() > 0)
        @foreach ($child->children_nested as $subChild)
      • @endforeach
      @endif
    • @endforeach
    @endif
  • @endforeach

Brand

Label

Tags

@endsection @push('scripts') @endpush