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

Deactive Regions

{!! 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', '0', ['class'=>'form-control'])}}
{!! Form::close() !!} @if(count($regions)>0)
@foreach($regions as $region) @endforeach
Region Name Country Name Action
{{$region->name}} {{$region->countryName}}
{{$regions->links()}}
{{--
--}}
@else
No Deactivate Regions Records Found.
@endif
@endsection