@extends('layouts.backend') @section('content')

Maps

{!! Form::open(['url' => 'backdoor/maps/search', 'class' => 'form-inline', 'role' => 'form', 'autocomplete' => 'off']) !!}
{!! Form::text('search', $search, ['class' => 'form-control', 'placeholder' => 'search maps', 'required']) !!} {!! Form::button('', ['class' => 'btn btn-default btn-xs', 'type' => 'submit', 'title' => 'Search']) !!}
{!! Form::close() !!}
@if($maps->isEmpty())
No map(s) found.
@else @foreach($maps as $map) @endforeach
Map Name Map Type Map File Status
{{ $map->m_name }} {!! $map->m_type == 1 ? 'Hazard Map' : 'Vulnerability Rating' !!} {!! $map->is_active == 1 ? '' : '' !!}
@if($maps->render()) @endif @endif
@stop