@extends('admin.frame_list')
@section('content_btn')
添加角色
@stop
@section('table_data')
角色名称 |
角色描述 |
拥有权限 |
操作 |
@foreach ($roles as $role)
{{ $role->name }} |
{{ $role->description }} |
@foreach ($role->menus_id as $menu_id)
@if (!$menu_id)
所有
@else
{{ $menu->find($menu_id)->name }},
@endif
@endforeach
|
@if ($role->id != 1)
编辑
@endif
@if ( !$role->admins->count() )
| 删除
@endif
|
@endforeach
@stop
@section('render_data')
{{ $roles->render() }}
@stop