@extends('admin.layout') @section('admin-title') Scavenger Hunts @endsection @section('admin-content') {!! breadcrumbs(['Admin Panel' => 'admin', 'Scavenger Hunts' => 'admin/data/hunts']) !!}

Scavenger Hunts

This is a list of scavenger hunts.

Create New Hunt
@if (!count($hunts))

No hunts found.

@else {!! $hunts->render() !!}
Active
Name
Display Name
Start
End
@foreach ($hunts as $hunt)
{!! $hunt->isActive ? '' : '' !!}
{{ $hunt->name }}
{!! $hunt->displayLink !!}
{!! pretty_date($hunt->start_at) !!}
{!! pretty_date($hunt->end_at) !!}
@endforeach
{!! $hunts->render() !!} @endif @endsection @section('scripts') @parent @endsection