{!! 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)
City Name |
Country Name |
Region Name |
No Of Pumps |
Action |
@foreach($cities as $city)
{{$city->name}} |
{{$city->countryName}} |
{{$city->regionName}} |
{{$city->noOfPumps}} |
|
|
@endforeach
{{$cities->links()}}
{{--
--}}
@else
No Activate City Records Found.
@endif