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

{!! $target->displayItemLong !!}

Congratulations! Click the button below to log that you've found this target and claim this prize.

@if ($target->description)

It seems a message was attached!

{{ $target->description }}

@endif @if ($hunt->isActive) @if (!isset($participantLog[$target->targetField])) {!! Form::open(['url' => 'hunts/targets/claim']) !!} {!! Form::hidden('page_id', $target->page_id) !!} {!! Form::submit('Claim', ['class' => 'btn btn-primary']) !!} {!! Form::close() !!} @else

You've already claimed this!

@endif @else

This hunt isn't active. Check the hunt's page for more information!

@endif
@endsection