@extends('admin.layouts.default')
@section('head')
@if ($drag_sort)
{{ HTML::script('admin/assets/js/libs/jquery.tablednd.js') }}
@endif
{{ Form::model($inputs,array('method'=>'get')) }}
類別:
{{ Form::select('model', $model_list, null, array('class' => 'form-control', 'id' => 'js_model')) }}
{{ Form::text('keyword',null,array('class' => 'form-control')) }}
@if (isset($inputs['keyword']))
清除搜尋
@endif
{{ Form::close() }}
共 {{ $list->getLastPage() }} 頁, {{ $list->getTotal() }} 筆資料
@if ($list->getTotal() > 0)
設定項目 |
@if (App::environment('local'))
key |
@endif
設定值 |
說明 |
操作 |
@foreach ($list as $value)
{{ $value->title }} |
@if (App::environment('local'))
{{ $value->keyword }} |
@endif
{{ e(Str::limit($value[$value->type],64)) }}
|
{{ $value->descript }} |
編輯
@if (App::environment('local'))
刪除
@endif
|
@endforeach
{{-- 分頁 --}}
{{ $list->appends($page_appends)->links() }}
@endif
@stop