23 lines
860 B
PHP
23 lines
860 B
PHP
<style>
|
|
input[type=text] {
|
|
padding: 2px;
|
|
border: 1px solid #ccc;
|
|
-webkit-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
input[type=text]:focus {
|
|
border-color: #333;
|
|
}
|
|
</style>
|
|
<div><strong>패스워드용 난수 : </strong><input type=text style="width:290px;" value="{{$helper->getRandomString()}}"></div>
|
|
@foreach ($entities as $entity)
|
|
@php $service = $services[$entity->getServiceCode()] @endphp
|
|
<div>
|
|
<i class="fa fa-info-circle fa-fw"></i>
|
|
<a href="/serviceDetailSolo.sev?client_code={{$service->getClientCode()}}&service_code={{$entity->getServiceCode()}}" style="text-decoration: none;color:gray;font-size:10pt;line-height:1.6em;">
|
|
[{{$clients[$service->getClientCode()]->getTitle()}}]{{$entity->getServiceCode()}}/{{$entity->behavior}}
|
|
</a>
|
|
<span class="pull-right text-muted small"><em>{{$entity->note}}</em></span>
|
|
</div>
|
|
@endforeach |