@extends('layouts.dashboard.dashboard')
@push('css')
@endpush
@push('js')
@endpush
@section('content')
@component('card-component',['title'=>ucfirst('dictionarys')])
@component('components.data-table',['tableID'=>"tabledictionary"])
@slot('thead')
| @lang('main.id') |
@lang('main.name') |
@lang('main.value') |
@lang('main.edit') |
@lang('main.delete') |
@endslot
@slot('tbody')
@foreach ($dictionaries as $dictionary)
| {{$dictionary->id}} |
{{$dictionary->name}} |
{{$dictionary->value}} |
@lang('main.edit') |
|
@endforeach
@endslot
@endcomponent
@endcomponent
@stop