@lang('db.types') @lang('system.title.index')
@include('common/error-message')
| @lang('system.command.edit') |
@lang('db.type.id')
| @lang('db.type.name') |
@lang('db.type.note') |
@lang('system.command.delete') |
@foreach($types as $type)
|
|
{{ $type->id }} |
{{ $type->name }} |
{{ Str::limit($type->note, 50) }} |
|
@endforeach
@include('common/pagination', ['tables' => $types])
@include('common/script-sort')
@include('common/script-del_check')
@endsection