@extends('layouts.app') @section('title', 'Custom Fields | Shopping Cart') @section('content')
Customer Custom Fields
@include('flash::message') @if(count($fields) > 0) @foreach($fields as $item) @endforeach @endif
Name Display Name Type Required ?
{{ $item->name }} {{ $item->label }} {{ \App\Modules\Product\Models\CustomField::type_name($item->type) }} {{ ($item->is_required == 1) ? 'Yes' : 'No' }}
@endsection @section('footer') @include('Product::custom-field._script') @endsection