2017-10-26 03:43:28 -07:00
|
|
|
<!-- Asset -->
|
2017-11-22 07:07:18 -08:00
|
|
|
<div id="assigned_asset" class="form-group{{ $errors->has($fieldname) ? ' has-error' : '' }}"{!! (isset($style)) ? ' style="'.e($style).'"' : '' !!}>
|
2017-10-26 03:43:28 -07:00
|
|
|
{{ Form::label($fieldname, $translated_name, array('class' => 'col-md-3 control-label')) }}
|
2021-08-18 00:44:16 -07:00
|
|
|
<div class="col-md-8{{ ((isset($required) && ($required =='true'))) ? ' required' : '' }}">
|
2020-04-01 00:15:33 -07:00
|
|
|
<select class="js-data-ajax select2" data-endpoint="hardware" data-placeholder="{{ trans('general.select_asset') }}" aria-label="{{ $fieldname }}" name="{{ $fieldname }}" style="width: 100%" id="{{ (isset($select_id)) ? $select_id : 'assigned_asset_select' }}"{{ (isset($multiple)) ? ' multiple' : '' }}{!! (!empty($asset_status_type)) ? ' data-asset-status-type="' . $asset_status_type . '"' : '' !!}>
|
2017-11-12 17:22:16 -08:00
|
|
|
|
2020-04-21 03:58:31 -07:00
|
|
|
@if ((!isset($unselect)) && ($asset_id = old($fieldname, (isset($asset) ? $asset->id : (isset($item) ? $item->{$fieldname} : '')))))
|
2020-04-02 18:17:21 -07:00
|
|
|
<option value="{{ $asset_id }}" selected="selected" role="option" aria-selected="true" role="option">
|
2017-11-08 17:07:57 -08:00
|
|
|
{{ (\App\Models\Asset::find($asset_id)) ? \App\Models\Asset::find($asset_id)->present()->fullName : '' }}
|
2017-10-26 21:51:53 -07:00
|
|
|
</option>
|
2017-10-28 08:37:47 -07:00
|
|
|
@else
|
2018-07-16 14:10:54 -07:00
|
|
|
@if(!isset($multiple))
|
2020-04-02 18:17:21 -07:00
|
|
|
<option value="" role="option">{{ trans('general.select_asset') }}</option>
|
2018-07-16 14:10:54 -07:00
|
|
|
@endif
|
2017-10-26 21:51:53 -07:00
|
|
|
@endif
|
2017-10-26 03:43:28 -07:00
|
|
|
</select>
|
|
|
|
</div>
|
2021-09-26 01:11:08 -07:00
|
|
|
{!! $errors->first($fieldname, '<div class="col-md-8 col-md-offset-3"><span class="alert-msg" aria-hidden="true"><i class="fas fa-times" aria-hidden="true"></i> :message</span></div>') !!}
|
2017-10-26 03:43:28 -07:00
|
|
|
|
|
|
|
</div>
|