@extends('world.layout')
@section('title')
{{ ucfirst(__('transformations.transformations')) }}
@endsection
@section('content')
{!! breadcrumbs(['World' => 'world', ucfirst(__('transformations.transformations')) => 'world/' . __('transformations.transformations')]) !!}
{{ ucfirst(__('transformations.transformations')) }}
{!! 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() !!}
{!! $transformations->render() !!}
@foreach ($transformations as $transformation)
@include('world._transformation_entry', ['transformation' => $transformation])
@endforeach
{!! $transformations->render() !!}
{{ $transformations->total() }} result{{ $transformations->total() == 1 ? '' : 's' }} found.
@endsection