@extends('admin.layout') @section('admin-title') {{ $target->id ? 'Edit' : 'Create' }} Hunt Target @endsection @section('admin-content') {!! breadcrumbs([ 'Admin Panel' => 'admin', 'Scavenger Hunts' => 'admin/data/hunts', 'Edit Scavenger Hunt' => 'admin/data/hunts/edit/' . $hunt->id, ($target->id ? 'Edit' : 'Create') . ' Target' => $target->id ? 'admin/data/hunts/targets/edit/' . $target->id : 'admin/data/hunts/targets/create/' . $hunt->id, ]) !!}
This item serves as the hunt target, and is granted to users upon claiming it. While targets are identified internally and for admin purposes by their plain ID, they are only identified to members via a random string.
@elseAdd an item to serve as a hunt target and be granted to users when they claim the target. While targets are identified internally and for admin purposes by their plain ID, they are only identified to members via a random string. This string is generated on creation-- links for placement around the site, etc. will be displayed once the target is created.
@endif {!! Form::open(['url' => $target->id ? 'admin/data/hunts/targets/edit/' . $target->id : 'admin/data/hunts/targets/create']) !!}For convenience, here are links for placing targets around the site, etc. These links, being user-facing, make use of the randomized page ID for targets rather than the orderly (and thus predictable) internal ID. Links will need to be added to their respective destinations via source editing. Feel free to adjust the presentation of them, however. If the target item has an image, it displays only that; if it does not, it displays the item's name.
HTML {!! add_help('For use around the site, etc.') !!}
Wiki