{!! Form::open(['action' => 'RegionsController@search', 'method' => 'GET', 'class' => 'form-horizontal']) !!}
{{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::hidden('active', '1', ['class'=>'form-control'])}}
{!! Form::close() !!}
@if(count($regions)>0)
Region Name |
Country Name |
Action |
@foreach($regions as $region)
{{$region->name}} |
{{$region->countryName}} |
|
|
@endforeach
{{$regions->links()}}
{{--
--}}
@else
No Activate Regions Records Found.
@endif