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

Locations

Locations are specific areas of your world. eg. Canada, Europe, Las Vegas.

The sorting order reflects the order in which the locations will be listed on the location index.

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

No locations found.

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