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