{!! Form::open(['action' => 'CountriesController@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($countries)>0)
Name |
Short Name |
Phone Code |
Action |
@foreach($countries as $country)
{{$country->name}} |
{{$country->shortName}} |
{{$country->phoneCode}} |
|
|
@endforeach
@else
No Active Country Records Found.
@endif