@extends('common/main/layout') @section('content')

@lang('db.items') @lang('system.title.index')

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