@extends('admin.layouts.default')
@section('head')
{{ HTML::style('//code.jquery.com/ui/1.11.0/themes/smoothness/jquery-ui.css') }}
{{ HTML::script('//code.jquery.com/ui/1.11.0/jquery-ui.js') }}
{{ Form::model($inputs,array('method'=>'get')) }}
關鍵字:
{{ Form::text('keyword',null,array('class' => 'form-control')) }}
日期區間:
{{ Form::text('date_start',null,array('class' => 'form-control', 'id' => 'date_start', 'placeholder' => '開始日期')) }}
{{ Form::text('date_end',null,array('class' => 'form-control', 'id' => 'date_end', 'placeholder' => '結束日期')) }}
@if (isset($inputs['keyword']))
清除搜尋
@endif
{{ Form::close() }}
共 {{ $list->getLastPage() }} 頁, {{ $list->getTotal() }} 筆資料,一頁顯示
{{ Form::select('per_page',array('20' => '20', '40' => '40', '60' => '60'), $per_page, array('id' => 'js_per_page', 'class' => 'form-control', 'data-url' => url('backend/setting/per-page'))) }}
筆資料
@if ($list->getTotal() > 0)
{{-- 多選動作選單 --}}
{{-- /多選動作選單 --}}
{{-- 分頁 --}}
{{ $list->appends($page_appends)->links() }}
@endif
@stop