@extends('admin.layouts.default') @section('head') @if ($drag_sort) {{ HTML::script('admin/assets/js/libs/jquery.tablednd.js') }} @endif {{ Config::get('backend.web_title', '網站內容管理系統') }} @stop @section('content')
{{ 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')) @endif @foreach ($list as $value) @if (App::environment('local')) @endif @endforeach
設定項目key設定值 說明 操作
{{ $value->title }}{{ $value->keyword }} {{ e(Str::limit($value[$value->type],64)) }} {{ $value->descript }}
編輯 @if (App::environment('local')) 刪除 @endif
{{-- 分頁 --}}
{{ $list->appends($page_appends)->links() }}
@endif
@stop