@extends('admin.layouts.default') @section('head') {{ Config::get('backend.web_title', '網站內容管理系統') }} @stop @section('content')
{{ Form::model($inputs,array('method'=>'get')) }}
{{ Form::text('keyword',null,array('class' => 'form-control')) }}
@if (isset($inputs['keyword'])) 清除搜尋 @endif
{{ Form::close() }}
共 {{ $list->getLastPage() }} 頁, {{ $list->getTotal() }} 筆資料
@if ($list->getTotal() > 0)
@if (Auth::user()->hasRole("Root")) @endif @foreach ($list as $value) @if (Auth::user()->hasRole("Root")) @endif @endforeach
姓名 帳號(email)群組操作
{{ $value->username }} {{ $value->email }}{{-- $value->assigned_roles->count() --}}{{-- 尚未完成 --}}
{{-- 多選動作選單 --}} {{-- /多選動作選單 --}} {{-- 分頁 --}}
{{ $list->appends($page_appends)->links() }}
@endif
@stop