@extends('layouts.app') @section('content')
@include('proedge.config.adminPanel')

CRM Module: Custom Fields

Custom Fields allow you to define additional fields for the CRM module, fields are presented by category.
@foreach ($fields as $field) @endforeach
Category Field Label Data Type Created Status Options
{{$field->category->Name}} {{$field->FieldLabel}} {!! ($field->DataType == 'Select') ? " $field->id])."'>Select Box":$field->DataType !!} {{date('m/d/Y h:i A', strtotime($field->created_at))}} {{($field->Status == 1) ? 'Active' : 'Disabled'}}
@endsection