2021-04-20 15:29:43 -07:00
|
|
|
@extends('layouts/default', [
|
|
|
|
'helpText' => trans('admin/custom_fields/general.about_fieldsets_text'),
|
|
|
|
'helpPosition' => 'right',
|
|
|
|
])
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
{{-- Page title --}}
|
|
|
|
@section('title')
|
2021-11-02 03:27:53 -07:00
|
|
|
{{ trans('admin/custom_fields/general.manage') }} {{ trans('admin/custom_fields/general.custom_fields') }}
|
2016-03-25 01:18:05 -07:00
|
|
|
@parent
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
2018-07-12 18:28:20 -07:00
|
|
|
@can('view', \App\Models\CustomFieldset::class)
|
2016-03-25 01:18:05 -07:00
|
|
|
<div class="row">
|
2021-04-20 15:29:43 -07:00
|
|
|
<div class="col-md-12">
|
2016-03-25 01:18:05 -07:00
|
|
|
<div class="box box-default">
|
|
|
|
|
2016-12-27 12:03:47 -08:00
|
|
|
<div class="box-header with-border">
|
2020-03-31 23:36:56 -07:00
|
|
|
<h2 class="box-title">{{ trans('admin/custom_fields/general.fieldsets') }}</h2>
|
2016-12-27 12:03:47 -08:00
|
|
|
<div class="box-tools pull-right">
|
2018-07-12 18:28:20 -07:00
|
|
|
@can('create', \App\Models\CustomFieldset::class)
|
2023-04-18 02:44:50 -07:00
|
|
|
<a href="{{ route('fieldsets.create') }}" class="btn btn-sm btn-primary" data-tooltip="true" title="{{ trans('admin/custom_fields/general.create_fieldset_title') }}">{{ trans('admin/custom_fields/general.create_fieldset') }}</a>
|
2018-07-12 18:28:20 -07:00
|
|
|
@endcan
|
2016-12-27 12:03:47 -08:00
|
|
|
</div>
|
|
|
|
</div><!-- /.box-header -->
|
|
|
|
|
|
|
|
<div class="box-body">
|
2018-04-24 16:25:10 -07:00
|
|
|
<table
|
|
|
|
data-cookie-id-table="customFieldsetsTable"
|
|
|
|
data-id-table="customFieldsetsTable"
|
|
|
|
data-search="true"
|
|
|
|
data-side-pagination="client"
|
|
|
|
data-show-columns="true"
|
|
|
|
data-show-export="true"
|
|
|
|
data-show-refresh="true"
|
|
|
|
data-sort-order="asc"
|
|
|
|
data-sort-name="name"
|
|
|
|
id="customFieldsTable"
|
|
|
|
class="table table-striped snipe-table"
|
|
|
|
data-export-options='{
|
|
|
|
"fileName": "export-fieldsets-{{ date('Y-m-d') }}",
|
|
|
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
|
|
|
}'>
|
2016-12-27 12:03:47 -08:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{{ trans('general.name') }}</th>
|
|
|
|
<th>{{ trans('admin/custom_fields/general.qty_fields') }}</th>
|
|
|
|
<th>{{ trans('admin/custom_fields/general.used_by_models') }}</th>
|
2021-11-02 04:03:41 -07:00
|
|
|
<th>{{ trans('table.actions') }}</th>
|
2016-12-27 12:03:47 -08:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
@if(isset($custom_fieldsets))
|
|
|
|
<tbody>
|
|
|
|
@foreach($custom_fieldsets AS $fieldset)
|
|
|
|
<tr>
|
|
|
|
<td>
|
2019-12-30 20:18:47 -08:00
|
|
|
{{ link_to_route("fieldsets.show",$fieldset->name,['fieldset' => $fieldset->id]) }}
|
2016-12-27 12:03:47 -08:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{ $fieldset->fields->count() }}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
@foreach($fieldset->models as $model)
|
2020-09-11 11:27:30 -07:00
|
|
|
<a href="{{ route('models.show', $model->id) }}" class="label label-default">{{ $model->name }}{{ ($model->model_number) ? ' ('.$model->model_number.')' : '' }}</a>
|
2017-01-25 05:14:39 -08:00
|
|
|
|
2016-12-27 12:03:47 -08:00
|
|
|
@endforeach
|
|
|
|
</td>
|
|
|
|
<td>
|
2023-01-26 17:02:53 -08:00
|
|
|
|
|
|
|
<nobr>
|
|
|
|
|
|
|
|
@can('update', $fieldset)
|
|
|
|
<a href="{{ route('fieldsets.edit', $fieldset->id) }}" class="btn btn-warning btn-sm">
|
|
|
|
<i class="fas fa-pencil-alt" aria-hidden="true"></i>
|
|
|
|
<span class="sr-only">{{ trans('button.edit') }}</span>
|
|
|
|
</a>
|
|
|
|
@endcan
|
|
|
|
|
2018-07-12 18:28:20 -07:00
|
|
|
@can('delete', $fieldset)
|
2023-01-26 17:02:53 -08:00
|
|
|
{{ Form::open(['route' => array('fieldsets.destroy', $fieldset->id), 'method' => 'delete','style' => 'display:inline-block']) }}
|
2016-12-27 12:03:47 -08:00
|
|
|
@if($fieldset->models->count() > 0)
|
2021-09-26 01:11:08 -07:00
|
|
|
<button type="submit" class="btn btn-danger btn-sm disabled" disabled><i class="fas fa-trash"></i></button>
|
2016-12-27 12:03:47 -08:00
|
|
|
@else
|
2021-09-26 01:11:08 -07:00
|
|
|
<button type="submit" class="btn btn-danger btn-sm"><i class="fas fa-trash"></i></button>
|
2016-12-27 12:03:47 -08:00
|
|
|
@endif
|
|
|
|
{{ Form::close() }}
|
2018-07-12 18:28:20 -07:00
|
|
|
@endcan
|
2023-01-26 17:02:53 -08:00
|
|
|
</nobr>
|
2016-12-27 12:03:47 -08:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</tbody>
|
|
|
|
@endif
|
|
|
|
</table>
|
2016-03-25 01:18:05 -07:00
|
|
|
</div><!-- /.box-body -->
|
2016-12-27 12:03:47 -08:00
|
|
|
</div><!-- /.box.box-default -->
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2021-04-20 15:29:43 -07:00
|
|
|
</div> <!-- .col-md-12-->
|
|
|
|
|
|
|
|
|
2016-12-27 12:03:47 -08:00
|
|
|
</div> <!-- .row-->
|
2018-07-12 18:28:20 -07:00
|
|
|
@endcan
|
|
|
|
@can('view', \App\Models\CustomField::class)
|
2016-12-27 12:03:47 -08:00
|
|
|
<div class="row">
|
2018-03-25 13:46:57 -07:00
|
|
|
<div class="col-md-12">
|
2016-12-27 12:03:47 -08:00
|
|
|
<div class="box box-default">
|
|
|
|
<div class="box-header with-border">
|
2020-03-31 23:36:56 -07:00
|
|
|
<h2 class="box-title">{{ trans('admin/custom_fields/general.custom_fields') }}</h2>
|
2016-12-27 12:03:47 -08:00
|
|
|
<div class="box-tools pull-right">
|
2018-07-12 18:28:20 -07:00
|
|
|
@can('create', \App\Models\CustomField::class)
|
2023-04-18 02:44:50 -07:00
|
|
|
<a href="{{ route('fields.create') }}" class="btn btn-sm btn-primary" data-tooltip="true" title="{{ trans('admin/custom_fields/general.create_field_title') }}">{{ trans('admin/custom_fields/general.create_field') }}</a>
|
2018-07-12 18:28:20 -07:00
|
|
|
@endcan
|
2016-12-27 12:03:47 -08:00
|
|
|
</div>
|
2018-04-24 16:25:10 -07:00
|
|
|
|
2016-12-27 12:03:47 -08:00
|
|
|
</div><!-- /.box-header -->
|
|
|
|
<div class="box-body">
|
2018-04-24 16:25:10 -07:00
|
|
|
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table
|
|
|
|
data-cookie-id-table="customFieldsTable"
|
|
|
|
data-id-table="customFieldsTable"
|
|
|
|
data-search="true"
|
|
|
|
data-side-pagination="client"
|
|
|
|
data-show-columns="true"
|
|
|
|
data-show-export="true"
|
|
|
|
data-show-refresh="true"
|
|
|
|
data-sort-order="asc"
|
|
|
|
data-sort-name="name"
|
|
|
|
id="customFieldsTable"
|
|
|
|
class="table table-striped snipe-table"
|
|
|
|
data-export-options='{
|
|
|
|
"fileName": "export-fields-{{ date('Y-m-d') }}",
|
|
|
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
|
|
|
}'>
|
2016-12-27 12:03:47 -08:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2022-11-08 07:28:19 -08:00
|
|
|
<th data-sortable="true" data-searchable="true">{{ trans('general.name') }}</th>
|
|
|
|
<th data-sortable="true" data-searchable="true">{{ trans('admin/custom_fields/general.help_text')}}</th>
|
|
|
|
<th data-sortable="true" data-searchable="true">{{ trans('admin/custom_fields/general.unique') }}</th>
|
|
|
|
<th data-sortable="true" data-visible="false">{{ trans('admin/custom_fields/general.db_field') }}</th>
|
|
|
|
<th data-sortable="true" data-searchable="true">{{ trans('admin/custom_fields/general.field_format') }}</th>
|
|
|
|
<th data-sortable="true"><i class="fa fa-lock" aria-hidden="true"></i>
|
2022-05-14 10:20:04 -07:00
|
|
|
<span class="hidden-xs hidden-sm hidden-md hidden-lg">{{ trans('admin/custom_fields/general.encrypted') }}</span>
|
|
|
|
</th>
|
2022-11-08 07:28:19 -08:00
|
|
|
<th data-visible="false" data-sortable="true"><i class="fa fa-eye" aria-hidden="true"><span class="sr-only">Visible to User</span></i></th>
|
|
|
|
<th data-sortable="true" data-searchable="true"><i class="fa fa-envelope" aria-hidden="true"><span class="sr-only">Show in Email</span></i></th>
|
|
|
|
<th data-sortable="true" data-searchable="true">{{ trans('admin/custom_fields/general.field_element_short') }}</th>
|
2018-04-24 16:25:10 -07:00
|
|
|
<th data-searchable="true">{{ trans('admin/custom_fields/general.fieldsets') }}</th>
|
2021-11-02 03:27:53 -07:00
|
|
|
<th>{{ trans('button.actions') }}</th>
|
2016-12-27 12:03:47 -08:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2017-01-26 04:52:11 -08:00
|
|
|
@foreach($custom_fields as $field)
|
2016-12-27 12:03:47 -08:00
|
|
|
<tr>
|
|
|
|
<td>{{ $field->name }}</td>
|
2017-01-26 04:52:11 -08:00
|
|
|
<td>{{ $field->help_text }}</td>
|
2022-11-08 07:28:19 -08:00
|
|
|
|
2022-02-16 13:47:48 -08:00
|
|
|
<td class='text-center'>{!! ($field->is_unique=='1') ? '<i class="fas fa-check text-success" aria-hidden="true"><span class="sr-only">'.trans('general.yes').'</span></i>' : '<i class="fas fa-times text-danger" aria-hidden="true"><span class="sr-only">'.trans('general.no').'</span></i>' !!}</td>
|
2018-02-21 15:51:04 -08:00
|
|
|
<td>
|
|
|
|
<code>{{ $field->convertUnicodeDbSlug() }}</code>
|
|
|
|
@if ($field->convertUnicodeDbSlug()!=$field->db_column)
|
2022-06-27 11:52:51 -07:00
|
|
|
<br><i class="fas fa-exclamation-triangle text-danger"></i>
|
|
|
|
{!! trans('admin/custom_fields/general.db_convert_warning',['db_column' => $field->db_column, 'expected' => $field->convertUnicodeDbSlug()]) !!}
|
2018-02-21 15:51:04 -08:00
|
|
|
@endif
|
|
|
|
</td>
|
2016-12-27 12:03:47 -08:00
|
|
|
<td>{{ $field->format }}</td>
|
2022-05-14 10:20:04 -07:00
|
|
|
<td>{!! ($field->field_encrypted=='1' ? '<i class="fa fa-check text-success"></i>' : '<i class="fa fa-times text-danger"></i>') !!}</td>
|
2022-11-08 07:28:19 -08:00
|
|
|
<td>{!! ($field->display_in_user_view=='1' ? '<i class="fa fa-check text-success"></i>' : '<i class="fa fa-times text-danger"></i>') !!}</td>
|
|
|
|
<td class='text-center'>{!! ($field->show_in_email=='1') ? '<i class="fas fa-check text-success" aria-hidden="true"><span class="sr-only">'.trans('general.yes').'</span></i>' : '<i class="fas fa-times text-danger" aria-hidden="true"><span class="sr-only">'.trans('general.no').'</span></i>' !!}</td>
|
2016-12-27 12:03:47 -08:00
|
|
|
<td>{{ $field->element }}</td>
|
|
|
|
<td>
|
|
|
|
@foreach($field->fieldset as $fieldset)
|
2017-01-25 05:14:39 -08:00
|
|
|
<a href="{{ route('fieldsets.show', $fieldset->id) }}" class="label label-default">{{ $fieldset->name }}</a>
|
2016-12-27 12:03:47 -08:00
|
|
|
@endforeach
|
|
|
|
</td>
|
|
|
|
<td>
|
2017-01-25 04:34:11 -08:00
|
|
|
<nobr>
|
2023-04-25 15:59:19 -07:00
|
|
|
{{ Form::open(array('route' => array('fields.destroy', $field->id), 'method' => 'delete', 'style' => 'display:inline-block')) }}
|
2018-07-12 18:28:20 -07:00
|
|
|
@can('update', $field)
|
2023-04-25 15:59:19 -07:00
|
|
|
<a href="{{ route('fields.edit', $field->id) }}" class="btn btn-warning btn-sm">
|
|
|
|
<i class="fas fa-pencil-alt" aria-hidden="true"></i>
|
|
|
|
<span class="sr-only">{{ trans('button.edit') }}</span>
|
|
|
|
</a>
|
2021-11-02 03:27:53 -07:00
|
|
|
@endcan
|
2023-04-25 15:59:19 -07:00
|
|
|
|
2018-07-12 18:28:20 -07:00
|
|
|
@can('delete', $field)
|
2023-04-25 15:59:19 -07:00
|
|
|
|
|
|
|
@if($field->fieldset->count()>0)
|
|
|
|
<button type="submit" class="btn btn-danger btn-sm disabled" disabled>
|
|
|
|
<i class="fas fa-trash" aria-hidden="true"></i>
|
|
|
|
<span class="sr-only">{{ trans('button.delete') }}</span></button>
|
|
|
|
@else
|
|
|
|
<button type="submit" class="btn btn-danger btn-sm">
|
|
|
|
<i class="fas fa-trash" aria-hidden="true"></i>
|
|
|
|
<span class="sr-only">{{ trans('button.delete') }}</span>
|
|
|
|
</button>
|
|
|
|
@endif
|
|
|
|
|
2018-07-12 18:28:20 -07:00
|
|
|
@endcan
|
2023-04-25 15:59:19 -07:00
|
|
|
{{ Form::close() }}
|
2017-01-25 04:34:11 -08:00
|
|
|
</nobr>
|
2016-12-27 12:03:47 -08:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2018-04-24 16:25:10 -07:00
|
|
|
</div>
|
2016-12-27 12:03:47 -08:00
|
|
|
</div><!-- /.box-body -->
|
|
|
|
</div><!-- /.box -->
|
|
|
|
</div> <!-- /.col-md-9-->
|
2016-03-25 01:18:05 -07:00
|
|
|
</div>
|
2018-07-12 18:28:20 -07:00
|
|
|
@endcan
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
@stop
|
2018-04-24 16:25:10 -07:00
|
|
|
@section('moar_scripts')
|
|
|
|
@include ('partials.bootstrap-table')
|
|
|
|
@stop
|