• {{ trans('function.tab_note') }}
  • {{ trans('function.tab_email') }}
  • {{ trans('function.tab_call') }}
  • {{ trans('function.tab_task') }}
  • {{ trans('function.tab_meeting') }}
{{ trans('label.edit') }}
{{-- function_id --}}
{{ trans('function.function_id') }}:
{{ $model->function_id }}  
{{-- name --}}
{{ trans('function.name') }}:
{{ $model->name }}  
{{-- url --}}
{{ trans('function.url') }}:
{{ $model->url }}  
{{-- sub_name --}}
{{ trans('function.sub_name') }}:
{{ $model->sub_name }}  
{{-- category->name --}}
{{ trans('function.category_id') }}:
{{ @$model->category->name }}  
{{-- identity_id --}}
{{ trans('function.identity_id') }}:
@foreach ($model->identities as $item) {{ $item->name }} @if (!$loop->last) , @endif @endforeach  
{{-- plan_type_name --}}
{{ trans('function.plan_type') }}:
@foreach ($model->plan_type_recs as $item) {{ $item->str_val1 . (!$loop->last ? ',' : '') }} @endforeach  
{{-- price --}}
{{ trans('function.price') }}:
{{ $model->price_formated }}  
{{-- type --}}
{{ trans('function.type') }}:
{!! $model->is_admin ? 'is_admin
' : '' !!} {!! $model->is_systemadmin ? 'is_systemadmin
' : '' !!} {!! $model->is_option ? 'is_option
' : '' !!}
{{-- permission_required --}}
{{ trans('function.permission_required') }}:
permission_required == 1 ? 'checked' : '' }} disabled>
{{-- note --}}
{{ trans('function.note') }}:
{!! $model->note !!}  
@include('includes.close_on_note_laravel_variable')