@extends('admin.layouts.app') @section('content')
字典管理
@if(role('Base/Dictionary/create')) @endif
@if(isset($list)) @foreach($list as $key => $item) @endforeach @endif
ID 数据字典表 数据字典代码 程序中使用,数据库使用value 编码 名称 相关操作
{{ $item->id }} {{ $item->dictionary_table_code }} {{ $item->dictionary_code }} {{ $item->key }} {{ $item->value }} {{ $item->name }} @if(role('Base/Dictionary/update')) @endif @if(role('Base/Dictionary/destroy')) 删除 @endif
{!! $list->setPath('')->appends(Request::all())->render() !!}
@endsection