@extends('admin.layout') @section('admin-title') Factions @endsection @section('admin-content') {!! breadcrumbs(['Admin Panel' => 'admin', 'Factions' => 'admin/world/factions']) !!}
Faction Types @if (count($types)) Create New Faction @endif

Factions

Factions are specific organizations within your world.

The sorting order reflects the order in which the factions will be listed on the faction index.

@if (!count($types))
You will need to create a faction type before you can create any factions, as type is required.
@endif @if (!count($factions))

No factions found.

@else @foreach ($factions as $faction) @endforeach
url !!} @if ($faction->thumb_extension) data-toggle="tooltip" title="
{{ ucfirst($faction->style) }} " @endif />{!! $faction->name !!}
Edit
{!! Form::open(['url' => 'admin/world/factions/sort']) !!} {!! Form::hidden('sort', '', ['id' => 'sortableOrder']) !!} {!! Form::submit('Save Order', ['class' => 'btn btn-primary']) !!} {!! Form::close() !!}
@endif @endsection @section('scripts') @parent @endsection