@extends('admin.layouts.master') @section('content')

Products Variants ({{ $product->name }})

Go Back

Create Product Size

@csrf
@foreach ($sizes as $size) @endforeach @if (count($sizes) === 0) @endif
No. Name price Action
{{ ++$loop->index }} {{ $size->name }} {{ currencyPosition($size->price) }} id) }}' class='btn btn-danger delete-item mx-2'>
No data found!

Create Product Options

@csrf
@foreach ($options as $option) @endforeach @if (count($options) === 0) @endif
No. Name price Action
{{ ++$loop->index }} {{ $option->name }} {{ currencyPosition($option->price) }} id) }}' class='btn btn-danger delete-item mx-2'>
No data found!
@endsection