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

Item Categories

This is a list of item categories that will be used to sort items in the inventory. Creating item categories is entirely optional, but recommended if you have a lot of items in the game.

The sorting order reflects the order in which the item categories will be displayed in the inventory, as well as on the world pages.

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

No item categories found.

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