@extends('worldexpansion.layout')
@section('title')
{{ $category->name }} Concept
@endsection
@section('content')
{!! breadcrumbs(['World' => 'world', 'Concept Categories' => 'world/concept-categories', $category->name => 'world/concept-categories/' . $category->id]) !!}
{!! $category->displayName !!}
@if ($category->image_extension)
@endif
@if (count($category->concepts))
All {{ $category->name }} Concept ({{ count($category->concepts) }})
@foreach ($category->concepts as $key => $concept)
{!! $concept->displayName !!}
@if ($key != count($category->concepts) - 1 && count($category->concepts) > 2)
,
@endif @if ($key == count($category->concepts) - 2)
and
@endif
@endforeach
@else
There aren't any {{ $category->names }} yet
@endif
@isset($category->summary)
{!! $category->summary !!}
@endisset
@isset($category->parsed_description)
{!! $category->parsed_description !!}
@endisset
@endsection