@extends('template.app') @section('title', 'Edit Produk') @section('css') @endsection @section('breadcrumb') @endsection @section('content')
Edit Produk
@csrf @method('PUT')
Informasi Produk
@foreach($units as $unit) @endforeach
@foreach($brands as $brand) @endforeach
@foreach($categories->where('parent_id', null) as $parentCategory) @foreach($parentCategory->children as $childCategory) @endforeach @endforeach
@foreach($stores as $store) @endforeach
Detail Produk
@if($product->has_varian == 'Y')
has_varian == 'Y' ? 'checked' : '' }} disabled>
@endif
@foreach($product->variants as $index => $variant) @endforeach
Variasi 1 Variasi 2 Variasi 3 Harga Beli Harga Jual Stok Berat (kg) SKU Barcode Gambar Aksi
Rp
Rp
@if($variant->images->isNotEmpty())
@foreach($variant->images as $image)
Product Image ×
@endforeach
@endif
Kembali
@endsection @section('js') @endsection