@extends('admin.layouts.default') @section('head') {{ Config::get('backend.web_title', '網站內容管理系統') }} @stop @section('content')
{{ Form::model($inputs,array('method'=>'get')) }} {{ Form::close() }}
共 {{ $list->getLastPage() }} 頁, {{ $list->getTotal() }} 筆資料
@if ($list->getTotal() > 0)
@foreach ($list as $value) @endforeach
群組名稱 操作
{{ $value->name }}
{{-- 多選動作選單 --}} {{-- /多選動作選單 --}} {{-- 分頁 --}}
{{ $list->links() }}
@endif
@stop