D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
www
/
storage
/
framework
/
views
/
Filename :
bff0be41bca69f1e276f3b2818eef311ab2ee16f.php
back
Copy
<label for="artist_select"><?php echo e(trans('client.artists.artist')); ?></label> <div id="artist_hide" class="artist_hide"></div> <select class="form-control artist_select" required name="artist_id" id="artist_select"> <option><?php echo e(trans('client.artists.any artist')); ?></option> <?php $__currentLoopData = $artists; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $one): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <? $selected = ''; if (!isset($artist_no)) { if (isset($artist_id)) { if ($artist_id == $one->id) { $selected = 'selected'; } } } ?> <option data-saloon="<?php echo e($one->saloon->name); ?>" data-saloon-id="<?php echo e($one->saloon->id); ?>" <?php echo e((isset($selected))?$selected:''); ?> value="<?php echo e($one->id); ?>"><?php echo e($one->name); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select>