@extends('layouts.main') @section('page-id', '606c80552417802e081e6c9c') @section('content')

{{ $species->name }}

{{ $species->category->name }}
({{ $species->scientific_name }})

{{ $species->description }}

Uses

{{ $species->uses }}

Sowing Rate

{!! $species->sowing_rate_advice !!}

Persistence

{{ $species->persistence }}

Sowing Period

{!! nl2br(e($species->ideal_sowing_time)) !!}

Yield Potential

{{ $species->yield }}

Management

{{ $species->management }}

@if (count($species->testimonials) > 0)
@foreach ($species->testimonials as $testimonial)

{{ $testimonial->title }}

“{{ $testimonial->body }}”

- {{ $testimonial->by }}
@endforeach
@if (count($species->testimonials) > 1)
@endif
@endif

Additional Info

{{ $species->additional_information }}

@if ($species->works_well_with)

Works well with

{{ $species->works_well_with }}

@endif
@if (count($species->products) > 0 || count($species->relatedArticles) > 0)
@if (count($species->products) > 0)

You can buy {{ $species->name }} or in the following Mixtures:

@foreach ($species->products as $product) @php $childCategory = $product->categories()->where('is_parent', '=', 0)->first(); $parentCategory = $childCategory->parents()->first(); @endphp

{{ $product->name }}

{{ $product->sub_title }}
View Product
@endforeach
@endif @if (count($species->relatedArticles) > 0)

Related Articles

@foreach ($species->relatedArticles as $relatedArticle) @php $articleCategory = $relatedArticle->categories()->first(); @endphp @endforeach
@endif
@endif @endsection