@extends('adminlte::page') @section('title', 'Glossary List') @section('content')

Glossary List

+ Add Glossary
@foreach($glossaries as $index => $item) @endforeach
# Category Name Slug Status Published Actions
{{ $index + 1 }} {{ $item->category->name ?? '-' }} {{ $item->name }} {{ $item->slug }} {{ $item->status ? 'Active' : 'Inactive' }} {{ $item->is_published ? 'Yes' : 'No' }} Edit
@csrf @method('DELETE')
@stop