9 lines
399 B
PHP
9 lines
399 B
PHP
<div x-data>
|
|
<x-form-field-title name="Core" required="true" />
|
|
<select x-model="file.meta_play_online_core" class="form-select" style="margin-bottom:15px;">
|
|
@foreach( \App\Helpers\PlayOnlineHelpers::getCoreLists() as $core )
|
|
<option value="{{ $core }}" :selected="file.meta_play_online_core === '{{$core}}'">{{ $core }}</option>
|
|
@endforeach
|
|
</select>
|
|
</div>
|