2017-10-26 22:09:08 -07:00
|
|
|
<!-- Asset Model -->
|
|
|
|
<div id="{{ $fieldname }}" class="form-group{{ $errors->has($fieldname) ? ' has-error' : '' }}">
|
|
|
|
|
|
|
|
{{ Form::label($fieldname, $translated_name, array('class' => 'col-md-3 control-label')) }}
|
|
|
|
|
2017-12-01 16:49:51 -08:00
|
|
|
<div class="col-md-7{{ ((isset($required)) && ($required=='true')) ? ' required' : '' }}">
|
2020-09-03 16:59:42 -07:00
|
|
|
<select class="js-data-ajax" data-endpoint="manufacturers" data-placeholder="{{ trans('general.select_manufacturer') }}" name="{{ $fieldname }}" style="width: 100%" id="manufacturer_select_id" aria-label="{{ $fieldname }}" {!! (\App\Helpers\Helper::checkIfRequired($item, $fieldname)) ? ' data-validation="required" required' : '' !!}>
|
2020-04-21 03:58:31 -07:00
|
|
|
@if ($manufacturer_id = old($fieldname, (isset($item)) ? $item->{$fieldname} : ''))
|
2020-04-02 18:17:21 -07:00
|
|
|
<option value="{{ $manufacturer_id }}" selected="selected" role="option" aria-selected="true" role="option">
|
2017-11-08 17:07:57 -08:00
|
|
|
{{ (\App\Models\Manufacturer::find($manufacturer_id)) ? \App\Models\Manufacturer::find($manufacturer_id)->name : '' }}
|
2017-10-26 22:09:08 -07:00
|
|
|
</option>
|
|
|
|
@else
|
2020-04-02 18:17:21 -07:00
|
|
|
<option value="" role="option">{{ trans('general.select_manufacturer') }}</option>
|
2017-10-26 22:09:08 -07:00
|
|
|
@endif
|
|
|
|
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
2017-12-19 20:30:46 -08:00
|
|
|
<div class="col-md-1 col-sm-1 text-left">
|
|
|
|
@can('create', \App\Models\Manufacturer::class)
|
|
|
|
@if ((!isset($hide_new)) || ($hide_new!='true'))
|
2020-05-23 09:19:19 -07:00
|
|
|
<a href='{{ route('modal.show', 'manufacturer') }}' data-toggle="modal" data-target="#createModal" data-select='manufacturer_select_id' class="btn btn-sm btn-primary">New</a>
|
2017-12-19 20:30:46 -08:00
|
|
|
@endif
|
|
|
|
@endcan
|
|
|
|
</div>
|
|
|
|
|
2017-10-26 22:09:08 -07:00
|
|
|
|
2020-04-01 03:21:15 -07:00
|
|
|
{!! $errors->first($fieldname, '<div class="col-md-8 col-md-offset-3"><span class="alert-msg" aria-hidden="true"><i class="fa fa-times" aria-hidden="true"></i> :message</span></div>') !!}
|
2017-10-26 22:09:08 -07:00
|
|
|
</div>
|