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

Deactive Countries

{!! Form::open(['action' => 'CountriesController@search', 'method' => 'GET', 'class' => 'form-horizontal']) !!}
{{Form::hidden('active', 0)}} {{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)
@foreach($countries as $country) @endforeach
Name Short Name Phone Code Action
{{$country->name}} {{$country->shortName}} {{$country->phoneCode}}
{{$countries->links()}}
{{--
--}}
@else
No Deactive Country Records Found.
@endif
@endsection