@extends('admin.layout')
@section('admin-title')
Forages
@endsection
@section('admin-content')
{!! breadcrumbs(['Admin Panel' => 'admin', 'Forages' => 'admin/data/forages']) !!}
Forages
Forages will roll a random reward from the contents of the table.
@if (!count($tables))
No Forages found.
@else
{!! $tables->render() !!}
Name
Display Name
Is Active?
@foreach ($tables as $table)
{!! $table->has_image ? '

' : '' !!}{{ $table->name }}
{!! $table->fancyDisplayName !!}
{!! $table->is_active ? '' : '' !!}
@endforeach
{!! $tables->render() !!}
{{ $tables->total() }} result{{ $tables->total() == 1 ? '' : 's' }} found.
@endif
@endsection