@extends('admin.layout') @section('admin-title') Character Categories @endsection @section('admin-content') {!! breadcrumbs(['Admin Panel' => 'admin', 'Character Categories' => 'admin/data/character-categories']) !!}

Character Categories

This is a list of character categories that will be used to classify characters. Creating character categories is entirely optional, but recommended for organisational purposes.

The sorting order reflects the order in which the character categories will be displayed on the world pages.

Create New Character Category
@if (!count($categories))

No character categories found.

@else @foreach ($categories as $category) @endforeach
Category Code Sub Masterlist
@if (!$category->is_visible) @endif {!! $category->displayName !!} {{ $category->code }} @if (isset($category->sublist->name)) {{ $category->sublist->name }} @else -- @endif Edit
{!! Form::open(['url' => 'admin/data/character-categories/sort']) !!} {!! Form::hidden('sort', '', ['id' => 'sortableOrder']) !!} {!! Form::submit('Save Order', ['class' => 'btn btn-primary']) !!} {!! Form::close() !!}
@endif @endsection @section('scripts') @parent @endsection