@extends('worldexpansion.layout') @section('title') Glossary @endsection @section('content') {!! breadcrumbs(['Lore' => 'info', 'Glossary' => 'info/glossary']) !!}

Glossary

This page contains quick definitions of commonly used terms. If a term has a longer lore page, it will be linked via the name of the term

{!! Form::open(['method' => 'GET', 'class' => '']) !!}
{!! Form::text('name', Request::get('name'), ['class' => 'form-control', 'placeholder' => 'Name']) !!}
{!! Form::select( 'sort', [ 'alpha' => 'Sort Alphabetically (A-Z)', 'alpha-reverse' => 'Sort Alphabetically (Z-A)', ], Request::get('sort') ?: 'alpha', ['class' => 'form-control'], ) !!}
{!! Form::submit('Search', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
{!! $terms->render() !!} @foreach ($terms as $term)

{!! $term->displayName !!} @if (Auth::check() && Auth::user()->hasPower('manage_world')) @endif

{!! $term->parsed_description !!}

@endforeach {!! $terms->render() !!}
{{ $terms->total() }} result{{ $terms->total() == 1 ? '' : 's' }} found.
@endsection @section('scripts') @endsection