@extends('admin.layout') @section('admin-title') Glossary @endsection @section('admin-content') {!! breadcrumbs(['Admin Panel' => 'admin', 'Glossary Terms' => 'admin/world/glossary']) !!}
The glossary is currently {{ Settings::get('WE_glossary') ? 'visible' : 'not visible' }}. {!! Form::open(['url' => 'admin/world/glossary/toggle-setting']) !!} {!! Form::submit('Toggle', ['class' => 'btn btn-primary']) !!} {!! Form::close() !!}

Glossary Terms

These are relatively short definitions of terms that will be displayed together on a searchable page for your users.

Glossary Term
@if (!count($glossaries))

No Glossary Terms found.

@else @foreach ($glossaries as $term) @endforeach
{!! $term->displayName !!} Edit
@endif @endsection @section('scripts') @parent @endsection