@extends('layouts.base') @section('title','商品自定义表单详情') @section('content')
@foreach($data as $k => $v) 商品Id:{{$v['goods_id']}} @foreach($v['data'] as $fname => $field)
@if(is_array($field) && (strexists($field[0], 'image') || strexists($field[0], 'images') || strexists($field[0], 'newimage'))) @foreach($field as $k1=>$v1) @endforeach @elseif (is_array($field) && (!strexists($field[0], 'image') || !strexists($field[0], 'images') || !strexists($field[0], 'newimage'))) @foreach($field as $v1) {{ $v1 }} @endforeach @else {{$field}} @endif
@endforeach @endforeach
@endsection('content')