@extends('admin.layouts.default') @section('head') {{ Config::get('backend.web_title', '網站內容管理系統') }} @stop @section('content')
@if ($list->count() > 0) {{ Form::model($inputs) }}
@foreach ($list as $value) @endforeach
權限名稱
{{ Form::checkbox('record_checkbox[]', $value->id, $inputs[$value->id], array('id' => 'id_'.$value->id)) }}
回群組列表 {{ Form::close() }} @else

尚未建立權限項目

@endif
@stop