@extends('world.layout') @section('world-title') Subtypes @endsection @section('content') {!! breadcrumbs(['World' => 'world', 'Subtypes' => 'world/subtypes']) !!}

Subtypes

{!! Form::open(['method' => 'GET', 'class' => 'form-inline justify-content-end']) !!}
{!! Form::text('name', Request::get('name'), ['class' => 'form-control']) !!}
{!! Form::submit('Search', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
{!! $subtypes->render() !!} @foreach ($subtypes as $subtype)
@include('world._subtype_entry', ['subtype' => $subtype])
@endforeach {!! $subtypes->render() !!}
{{ $subtypes->total() }} result{{ $subtypes->total() == 1 ? '' : 's' }} found.
@endsection