@extends('base.base')
@section('base')
{{ __('auto.角色列表') }}
| {{ __('auto.角色') }}ID |
{{ __('auto.角色名称') }} |
{{ __('auto.角色描述') }} |
{{ __('auto.创建时间') }} |
{{ __('auto.更新时间') }} |
{{ __('auto.操作') }} |
@foreach($list as $k=>$v)
| {{ $v->id }} |
{{ $v->name }} |
{{ $v->description }} |
{{ $v->created_at }} |
{{ $v->updated_at }} |
|
@endforeach
@endsection