@extends('layouts.master') @section('title', 'PetroERP- An ERP for Petrol Pumps') @section('content')
City

Active Cities

{!! Form::open(['action' => 'CitiesController@search', 'method' => 'GET', 'class' => 'form-horizontal']) !!}
{{Form::hidden('active', 1)}} {{Form::text('key', Input::old('key'), ['class'=>'form-control', 'placeholder'=>'Type to search . . .'])}} {{Form::submit('Search . . .', ['class'=>'btn btn-primary col-md-offset-2'])}}
{!! Form::close() !!} @if(count($cities)>0)
@foreach($cities as $city) @endforeach
City Name Country Name Region Name No Of Pumps Action
{{$city->name}} {{$city->countryName}} {{$city->regionName}} {{$city->noOfPumps}}
{{$cities->links()}}
{{--
--}}
@else
No Activate City Records Found.
@endif
@endsection