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

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

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