2016-03-25 01:18:05 -07:00
@ extends ( 'layouts/default' )
{{ -- Page title -- }}
@ section ( 'title' )
Manage {{ trans ( 'admin/custom_fields/general.custom_fields' ) }}
@ parent
@ stop
@ section ( 'content' )
< div class = " row " >
< div class = " col-md-9 " >
< div class = " box box-default " >
< div class = " box-header with-border " >
< h3 class = " box-title " > {{ trans ( 'admin/custom_fields/general.fieldsets' ) }} </ h3 >
< div class = " box-tools pull-right " >
2016-12-15 19:17:07 -08:00
< a href = " { { route('fieldsets.create') }} " class = " btn btn-sm btn-primary " data - toggle = " tooltip " title = " Create a new fieldset " > {{ trans ( 'admin/custom_fields/general.create_fieldset' ) }} </ a >
2016-03-25 01:18:05 -07:00
</ div >
</ div ><!-- /. box - header -->
< div class = " box-body " >
< table
name = " fieldsets "
id = " table " class = " table table-responsive table-no-bordered " >
< 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 >
< th ></ th >
</ tr >
</ thead >
@ if ( isset ( $custom_fieldsets ))
< tbody >
@ foreach ( $custom_fieldsets AS $fieldset )
< tr >
< td >
2016-12-15 19:17:07 -08:00
{{ link_to_route ( " fieldsets.show " , $fieldset -> name ,[ 'id' => $fieldset -> id ]) }}
2016-03-25 01:18:05 -07:00
</ td >
< td >
{{ $fieldset -> fields -> count () }}
</ td >
< td >
@ foreach ( $fieldset -> models as $model )
2016-12-15 19:17:07 -08:00
{{ link_to_route ( " models.show " , $model -> name ,[ $model -> id ]) }}
2016-03-25 01:18:05 -07:00
@ endforeach
</ td >
< td >
2016-12-15 19:17:07 -08:00
{{ Form :: open ( array ( 'route' => array ( 'fieldsets.destroy' , $fieldset -> id ), 'method' => 'delete' )) }}
2016-03-25 01:18:05 -07:00
@ if ( $fieldset -> models -> count () > 0 )
< button type = " submit " class = " btn btn-danger btn-sm disabled " disabled >< i class = " fa fa-trash " ></ i ></ button >
@ else
< button type = " submit " class = " btn btn-danger btn-sm " >< i class = " fa fa-trash " ></ i ></ button >
@ endif
{{ Form :: close () }}
</ td >
</ tr >
@ endforeach
@ endif
</ tbody >
</ table >
</ div ><!-- /. box - body -->
</ div ><!-- /. box -->
</ div >
<!-- side address column -->
< div class = " col-md-3 " >
< h4 > {{ trans ( 'admin/custom_fields/general.about_fieldsets_title' ) }} </ h4 >
< p > {{ trans ( 'admin/custom_fields/general.about_fieldsets_text' ) }} </ p >
</ div >
</ div >
< div class = " row " >
< div class = " col-md-9 " >
< div class = " box box-default " >
< div class = " box-header with-border " >
< h3 class = " box-title " > {{ trans ( 'admin/custom_fields/general.custom_fields' ) }} </ h3 >
< div class = " box-tools pull-right " >
2016-12-15 19:17:07 -08:00
< a href = " { { route('fields.create') }} " class = " btn btn-sm btn-primary " data - toggle = " tooltip " title = " Create a new custom field " > {{ trans ( 'admin/custom_fields/general.create_field' ) }} </ a >
2016-03-25 01:18:05 -07:00
</ div >
</ div ><!-- /. box - header -->
< div class = " box-body " >
< table
name = " fieldsets "
id = " table " class = " table table-responsive table-no-bordered " >
< thead >
< tr >
< th > {{ trans ( 'general.name' ) }} </ th >
< th > {{ trans ( 'admin/custom_fields/general.field_format' ) }} </ th >
< th > {{ trans ( 'admin/custom_fields/general.field_element_short' ) }} </ th >
< th > {{ trans ( 'admin/custom_fields/general.fieldsets' ) }} </ th >
< th ></ th >
</ tr >
</ thead >
< tbody >
@ foreach ( $custom_fields AS $field )
< tr >
< td > {{ $field -> name }} </ td >
< td > {{ $field -> format }} </ td >
< td > {{ $field -> element }} </ td >
< td >
@ foreach ( $field -> fieldset as $fieldset )
2016-12-15 19:17:07 -08:00
{{ link_to_route ( " fieldsets.show " , $fieldset -> name ,[ $fieldset -> id ])}}
2016-03-25 01:18:05 -07:00
@ endforeach
</ td >
< td >
2016-12-15 19:17:07 -08:00
{{ Form :: open ( array ( 'route' => array ( 'fields.destroy' , $field -> id ), 'method' => 'delete' )) }}
2016-03-25 01:18:05 -07:00
@ if ( $field -> fieldset -> count () > 0 )
< button type = " submit " class = " btn btn-danger btn-sm disabled " disabled >< i class = " fa fa-trash " ></ i ></ button >
@ else
< button type = " submit " class = " btn btn-danger btn-sm " >< i class = " fa fa-trash " ></ i ></ button >
@ endif
{{ Form :: close () }}
</ td >
</ tr >
@ endforeach
</ tbody >
</ table >
</ div ><!-- /. box - body -->
</ div ><!-- /. box -->
</ div >
</ div >
</ div >
@ stop