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

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

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

{!! $attachment->displayName !!}

@endforeach
@endforeach @endif
@endsection