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

Edit Produk untuk {{ $member->name }}

@csrf @method('PUT')
@foreach($member->userProduk as $userProduk)
@if($userProduk->produk->images->isNotEmpty())
@php $firstImage = $userProduk->produk->images->first(); @endphp {{ $userProduk->produk->nama }}
@else
Default Image
@endif
@endforeach
@endsection