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

Subtypes

Subtypes are optional categories that can be added to species. Characters require a species, but do not require a subtype. Note that the sort order here reflects the sort order under the species name as well.

Create New Subtype
@if (!count($subtypes))

No subtypes found.

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