@extends ('core.layouts.app') @section ('title', trans('labels.backend.customfields.management') . ' | ' . trans('labels.backend.customfields.create')) @section('page-header')

{{ trans('labels.backend.customfields.management') }} {{ trans('labels.backend.customfields.create') }}

@endsection @section('content')

{{ trans('labels.backend.customfields.view') }}

@include('focus.customfields.partials.customfields-header-buttons')

{{trans('customfields.name')}}

{{$customfield['name']}}

{{trans('customfields.module_id')}}

@php switch ($customfield['module_id']){ case 1: echo trans('customers.customer'); break; case 2: echo trans('invoices.invoice'); break; case 3: echo trans('products.product'); break; case 4 : echo trans('quotes.quotes'); break; case 5 : echo trans('orders.credit_notes'); break; } @endphp

{{trans('customfields.field_type')}}

{{$customfield['field_type']}}

{{trans('customfields.placeholder')}}

{{$customfield['placeholder']}}

{{trans('customfields.default_data')}}

{{$customfield['default_data']}}

{{trans('customfields.field_view')}}

@php switch ($customfield['field_view']){ case 1: echo trans('customfields.public'); break; case 2: echo trans('customfields.private'); break; } @endphp

@endsection