@extends('worldexpansion.layout') @section('title') Fauna :: {{ $fauna->name }} @endsection @section('content')@if (Auth::check() && Auth::user()->hasPower('manage_world')) @endif {!! breadcrumbs(['World' => 'world', 'Fauna' => 'world/faunas', $fauna->name => 'world/faunas/' . $fauna->id]) !!}

{!! $fauna->displayName !!}@isset($fauna->scientific_name) {!! $fauna->scientific_name !!} @endisset

{!! $fauna->category ? ucfirst($fauna->category->displayName) : 'Miscellaneous' !!}
@if ($fauna->image_extension)
@endif @isset($fauna->summary)
{!! $fauna->summary !!}
@endisset @isset($fauna->parsed_description)
{!! $fauna->parsed_description !!}
@endisset
@if (count(allAttachments($fauna))) @foreach (allAttachments($fauna) as $type => $attachments)
Associated {{ $type }}{{ count($attachments) == 1 ? '' : 's' }}
@foreach ($attachments as $attachment)

{!! $attachment->displayName !!}

@endforeach
@endforeach @endif
@endsection