imvkmark
11/30/2018 - 3:58 AM

shonc:template

shopnc 模版

顶部的标题框
<div class="bar-fixed">
	<div class="title-bar">
		<h3>图片平台KEY管理</h3>
		<ul class="tab-base">
			<li><a class="{{ route_current('dsk_image_key.index') }}" href="{{route('dsk_image_key.index')}}"><span>Key列表</span></a></li>
			<li><a class="{{ route_current('dsk_image_key.create') }}" href="{{route('dsk_image_key.create')}}"><span>Key添加</span></a></li>
			@if (isset($item))
				<li><a class="current" href="javascript:void(0)"><span>编辑 [{{$item->title }}]</span></a></li>
			@endif
		</ul>
	</div>
</div>

后台表格条目
<table class="table table-hover table-bordered table-middle">
    <tr>
    	<td class="w108">
    		{!! Form::label('order_price', trans('发单价格:'), ['class' => 'strong validation']) !!}
    	</td>
    	<td>{!! Form::text('order_price', null, ['class'=> 'w48']) !!}元</td>
    </tr>
    <tr>
    	<td>
    		{!! Form::label('order_safe_money', trans('安全保证金:'), ['class' => 'strong validation']) !!} {!! Form::tip(trans('tip.safe_money')) !!}
    	</td>
    	<td>{!! Form::text('order_safe_money', null, ['class'=> 'w48']) !!}元</td>
    </tr>
    <tr>
    	<td>
    		{!! Form::label('order_speed_money', trans('效率保证金:'), ['class' => 'strong validation']) !!}{!! Form::tip(trans('tip.speed_money')) !!}
    	</td>
    	<td>{!! Form::text('order_speed_money', null, ['class'=> 'w48']) !!}元</td>
    </tr>
</table>