@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::text('keyword',null,array('class' => 'form-control')) }}
{{ Form::close() }}
共 {{ $list->getLastPage() }} 頁, {{ $list->getTotal() }} 筆資料
@if ($list->getTotal() > 0)
@if (isset($list)) @foreach ($list as $value) @endforeach @endif
排序 分類名稱 操作
{{ $value->sort }} {{ $value->category_name }}
{{ $list->links() }} {{-- 多選動作選單 --}} {{-- /多選動作選單 --}} @endif {{-- 分頁 --}}
{{ $list->appends($page_appends)->links() }}
@stop