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

Prompt Categories

This is a list of prompt categories that will be used to classify prompts on the prompts page. Creating prompt categories is entirely optional, but recommended if you need to sort prompts for mod work division, for example. The submission approval queue page can be sorted by prompt category.

The sorting order reflects the order in which the prompt categories will be displayed on the prompts page.

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

No prompt categories found.

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