imvkmark
11/30/2018 - 3:32 AM

poppy:form

{!! Html::link(route_url(), '清空条件', ['class'=> 'btn btn-warning']) !!}
		

{!! Form::checkbox('_check_all', 1, null, ['class' => 'J_check_all']) !!}
		
		
@if (isset($item))
	{!! Form::model($item,['route' => ['dsk_blog_content.edit', $item->help_id], 'id' => 'form_help']) !!}
@else
	{!! Form::open(['route' => 'dsk_blog_content.create','id' => 'form_help']) !!}
@endif

{!! Form::model($order, ['route' => 'dsk_order.progress', 'id' => 'form_progress', 'method' => 'post']) !!}
{!! Form::model(isset($item) ? $item : null,['route' => 'order.store', 'id' => 'form_order','class'=> 'form-horizontal', 'method'=> 'post']) !!}
{!! Form::open(['url' => route('order.update_progress', [$order_id]), 'id' => 'form_progress']) !!}
{!! Form::hidden('order_id') !!}
{!! Form::label('parent_id', trans('admin.node.parent'), ['class' => 'strong validation']) !!}
{!! Form::text('search[kw]', null, ['class'=> 'form-control input-sm', 'placeholder' => '输入昵称/会员ID进行搜索']) !!}
{!! Form::textarea('content', null, ['style' => 'height: 60px;width:260px;']) !!}
{!! Form::button('<span>更新进度</span>', ['class'=> 'btn-btn-small J_updateFee']) !!}
{!! Form::button('<span>更新进度</span>', ['class'=> 'btn-small', 'type'=> 'submit']) !!}
{!! Form::select('question_type', $question_type, null, ['placeholder' => '请选择问题类型']) !!}
{!! Form::close() !!}
{!! Form::model(\Input::all(), ['class'=> 'form-inline']) !!}
<div class="form-group">
    {!! Form::select('type', [
        '未解决'
    ], null, ['class'=> 'form-control']) !!}
</div>
<div class="form-group">
    {!! Form::text('kw', null, ['class'=>'form-control']) !!}
</div>
{!! Form::close() !!}

<!--另一个搜索-->
{!! Form::model(Input::all(),[ 'method' => 'get','class'=>'form-search']) !!}
{!! Form::label('username', '用户名') !!}
{!! Form::text('username', null, ['placeholder' => '请输入用户ID']) !!}
{!! Form::select('return_status', \App\Models\CompanyCreditMoneyReturn::kvStatus(), null, ['placeholder' => '状态']) !!}
{!! Form::select('amount', $amount, null, ['placeholder' => '申请金额']) !!}
{!! Form::label('addtime', '添加时间:') !!}
@include('desktop.inc.search_range')
{!! Form::button('<i class="fa fa-search"> </i>', ['class'=> 'btn blue', 'type'=> 'submit']) !!}
{!! Html::link(route_url(), '清空条件', ['class'=> 'btn btn-warning']) !!}
{!!Form::close()!!}