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

Fauna

Fauna are the animals of your world.

Fauna Categories Create New Fauna
@if (!count($faunas))

No fauna found.

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