@extends('layouts.main')
@section('title')
Produk
@endsection
@push('styles')
@endpush
@section('container')
Table Produk
@foreach ($produk as $item)
No
Nama
Foto
Deskripsi
Harga
Kategori
Daftar Warna
Daftar Ukuran
Aksi
@endforeach
{{ $loop->iteration }}
{{ $item->nama }}
{{ $item->deskripsi }}
{{ $item->formatRupiah('harga') }}
{{ $item->kategori->nama }}
@foreach ($item->produkColor as $detail)
{{ $detail->color->code_color }}
@endforeach
@foreach ($item->produkUkuran as $detail)
{{ $detail->ukuran->ukuran }},
@endforeach