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

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

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

{!! $attachment->displayName !!}

@endforeach
@endforeach @endif
@endsection