@extends('admin.layout') @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 }} {{ $item->input_code }}
@if(role('Base/Dictionary/view')) @endif
{!! $list->setPath('')->appends(Request::all())->render() !!}
@endsection