@extends('Admin.Layout.master') @section('content') @component('Components.demoWarning') @endcomponent
{{ _t('settings.Settings_Fields') }} {{ _t('settings.Configure_fields') }}
{{ _t('settings.Configure_field_groups') }} {{ _t('settings.Configure_field_groups') }}
@foreach(getLanguage() as $local) @if (($key = $local['code']) == currentLocal()) @continue @endif
@endforeach
@foreach(getLanguage() as $local) @if (($key = $local['code']) == currentLocal()) @continue @endif
@endforeach
@if($fieldGroups->count())
@foreach($fieldGroups as $group) @endforeach
{{ _t('settings.SL_NO') }} {{ _t('settings.Title') }} {{ _t('settings.Core/Custom') }} {{ _t('settings.Editable') }} {{ _t('settings.icon') }} {{ _t('settings.Image') }} {{ _t('settings.Tag') }} {{ _t('settings.Sort_order') }} {{ _t('settings.Edit') }} {{ _t('settings.Remove') }}
{{ $loop->iteration }} {{ $group->getTitle() }} {!! $group->core?'core':'custom' !!} {!! $group->editable?'':'' !!} {!! makeThumbnail($group->image) !!} {{ $group->tag?$group->tag->getTitle():'No tag' }} {{ $group->sort_order }}
@else
{{ _t('settings.No_groups_found') }}
@endif
{{ _t('settings.Settings_tags') }} {{ _t('settings.Settings_tags_summary') }}
@foreach(getLanguage() as $local) @if (($key = $local['code']) == currentLocal()) @continue @endif
@endforeach
@foreach(getLanguage() as $local) @if (($key = $local['code']) == currentLocal()) @continue @endif
@endforeach
@if($fieldTags->count())
@foreach($fieldTags as $tag) @endforeach
{{ _t('settings.SL_No') }} {{ _t('settings.Tag_name') }} {{ _t('settings.Slug') }} {{ _t('settings.Total_field_groups') }} {{ _t('settings.Core/Custom') }} {{ _t('settings.Editable') }} {{ _t('settings.Edit') }} {{ _t('settings.Delete') }}
{{ $loop->iteration }} {{ $tag->getTitle() }} {{ $tag->slug }} {{ $tag->fieldGroups->count()?:'No groups' }} {!! $tag->core?'core':'custom' !!} {!! $tag->editable?'':'' !!}
@else
{{ _t('settings.No_tags_available') }}
@endif
@endsection