@extends('layouts.app') @section('title') Scavenger Hunt :: {{ $hunt->displayName }} @endsection @section('content') {!! breadcrumbs(['Scavenger Hunts' => $hunt->url, $hunt->displayName => $hunt->url]) !!}

{{ $hunt->displayName }}

@if (isset($participantLog)) @foreach ($logArray as $key => $found) @if (isset($found)) {!! $hunt->targets[$key - 1]->displayItemShort !!} @endif @endforeach @endif

You have found @if (isset($participantLog)) {{ $participantLog->targetsCount }} @else 0 @endif /{{ count($hunt->targets) }} targets!

Information

Start Time: {!! format_date($hunt->start_at) !!} ({{ $hunt->start_at->diffForHumans() }})
End Time: {!! format_date($hunt->end_at) !!} ({{ $hunt->end_at->diffForHumans() }})
@if ($hunt->summary) {{ $hunt->summary }} @endif
@if ($hunt->clue)

Here's a clue to get you started...

{{ $hunt->clue }} @else

There doesn't seem to be a clue for this hunt. You're on your own!

@endif
@if (isset($participantLog)) @foreach ($logArray as $key => $found) @if (isset($found)) @if (isset($hunt->targets[$key - 1]->description))

The {!! $hunt->targets[$key - 1]->item ? $hunt->targets[$key - 1]->item->name : 'Deleted Asset' !!} had this message for you:

{!! $hunt->targets[$key - 1]->description !!}

@endif @endif @endforeach @endif
@endsection